mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-17 08:48:13 +00:00
* Initial commit of py2app code * Use environment variable RESOURCE_PATH when running as a bundle * Move config files to system config location
8 lines
113 B
Python
Executable File
8 lines
113 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from src import init
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
sys.exit(init.run())
|