mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-01-24 00:10:03 +01:00
9 lines
174 B
Python
9 lines
174 B
Python
#!/usr/bin/env python3
|
|
|
|
if __name__ == "__main__":
|
|
from multiprocessing import freeze_support
|
|
from app.ui.main import start_app
|
|
|
|
freeze_support()
|
|
start_app()
|