initial 2

This commit is contained in:
Mikan
2026-03-10 01:40:10 +03:00
parent 346ea77fd2
commit 6946b8fb50
24 changed files with 370 additions and 1602 deletions

View File

@@ -1,6 +1,16 @@
"""Entry point for running the time tracker as a module."""
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)
from .main import main
if __name__ == "__main__":
main()