7 lines
104 B
Python
7 lines
104 B
Python
|
|
from ui.app import AppUI
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
# start the ui
|
||
|
|
app = AppUI()
|
||
|
|
app.run()
|