Files
cmshoppe/app/__main__.py
T

9 lines
129 B
Python
Raw Normal View History

2026-06-26 17:24:23 +08:00
"""Package entry point for `python -m app`."""
from .gui import main
if __name__ == "__main__":
raise SystemExit(main())