12 lines
266 B
Python
12 lines
266 B
Python
from ui.app import AppUI
|
|
from project import Project
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Loading project...")
|
|
test_project = Project.from_file("test_project.tdp")
|
|
|
|
# start the ui
|
|
print("Starting UI...")
|
|
app = AppUI(test_project)
|
|
app.run() |