Files
Terminal-DAW/src/main.py

12 lines
266 B
Python
Raw Normal View History

2026-01-13 16:06:57 +11:00
from ui.app import AppUI
from project import Project
2026-01-13 16:06:57 +11:00
if __name__ == "__main__":
print("Loading project...")
test_project = Project.from_file("test_project.tdp")
2026-01-14 09:11:09 +11:00
2026-01-13 16:06:57 +11:00
# start the ui
print("Starting UI...")
2026-01-14 09:11:09 +11:00
app = AppUI(test_project)
2026-01-13 16:06:57 +11:00
app.run()