12 lines
271 B
Python
12 lines
271 B
Python
# mxpic/__init__.py
|
|
|
|
from .core.license_check import verify_license
|
|
|
|
# Run the check immediately upon import
|
|
verify_license()
|
|
|
|
# If the check passes, the rest of the library loads
|
|
from .components import EC_dual_layer_px3,DC,DC_bend,DC_pX_3sg
|
|
from .routing import Route
|
|
|