v1.2.0: rewrite in Python (mirrors dhcpsrv); clickable update link

This commit is contained in:
2026-05-18 12:36:42 +03:00
parent 74549db869
commit e4d62d1b94
16 changed files with 582 additions and 290 deletions
+12
View File
@@ -0,0 +1,12 @@
"""
PyInstaller entry point — sits at the repo root and uses an *absolute* import
so the bundled exe doesn't need relative-import resolution at runtime.
For dev work without an install use `python -m netswitch` instead.
"""
from netswitch.app import main
if __name__ == "__main__":
main()