15 lines
336 B
Python
15 lines
336 B
Python
"""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())
|