mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-01-21 15:03:37 +01:00
8 lines
184 B
Python
Executable File
8 lines
184 B
Python
Executable File
#!/usr/bin/env python3
|
|
if __name__ == "__main__":
|
|
from multiprocessing import freeze_support
|
|
from app.ui.main_app_window import start_app
|
|
|
|
freeze_support()
|
|
start_app()
|