Files
TimeTracker/src/time_tracker/__main__.py

16 lines
312 B
Python
Raw Normal View History

2026-03-10 01:40:10 +03:00
import sys
from .app import Application
def main():
try:
app = Application()
app.run()
except RuntimeError as e:
print(f"Ошибка: {e}", file=sys.stderr)
input("Нажмите Enter для выхода...")
sys.exit(1)
2026-03-09 22:05:48 +03:00
2026-03-09 21:49:38 +03:00
if __name__ == "__main__":
main()