финальная версия Finance Control

This commit is contained in:
2026-05-25 22:06:16 +03:00
parent 7dcb1a23a7
commit 5890e4ae64
22 changed files with 1441 additions and 927 deletions

View File

@@ -1,10 +1,13 @@
from app.database import init_database
from app.ui.main_window import FinanceApp
def main() -> None:
"""Initialize database and start Finance Control."""
init_database()
app = FinanceApp()
app.mainloop()
if __name__ == "__main__":
main()