Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""Allows `python -m app` to run the app.
|
||||
|
||||
The real logic lives in app.main so the PyInstaller entry script can reuse it
|
||||
without depending on relative imports.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import sys
|
||||
|
||||
from app.main import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
Reference in New Issue
Block a user