Files
kicad-lib/kicad_plugins/via_fence_generator/__init__.py
2021-11-24 17:00:32 +01:00

10 lines
232 B
Python

# pcbnew loads this folder as a package using import
# thus __init__.py (this file) is executed
# We import the plugin class here and register it to pcbnew
from .viafence_action import ViaFenceAction
ViaFenceAction().register()