13 lines
292 B
Python
13 lines
292 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 grating_couplers,EC_dual_layer_px3
|
|
from .routing import Route
|
|
from .foundries import *
|
|
|