Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""Top-level entry script used by PyInstaller.
|
||||
|
||||
PyInstaller treats its entry script as a top-level module, so relative imports
|
||||
inside it would fail. This file uses absolute imports against the `app` package.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import sys
|
||||
|
||||
from app.main import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
Reference in New Issue
Block a user