starting work on UI

This commit is contained in:
2026-01-13 16:06:57 +11:00
parent 96d9fe94bf
commit 0beb40d701
5 changed files with 142 additions and 0 deletions

7
src/main.py Normal file
View File

@@ -0,0 +1,7 @@
from ui.app import AppUI
if __name__ == "__main__":
# start the ui
app = AppUI()
app.run()