Rename the core package to periscopex, update UI/docs/Docker/deploy defaults to periscope.michelebigi.it, and keep legacy version/storage key aliases so existing projects keep working. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
196 B
Python
9 lines
196 B
Python
"""KiCad plugin package. Registers the action when loaded inside pcbnew."""
|
|
|
|
from __future__ import annotations
|
|
|
|
try:
|
|
from . import periscope_plugin # noqa: F401
|
|
except ImportError:
|
|
pass
|