Files
Zordon/main.py
Brett f663430984 Fix py2app (#69)
* Initial commit of py2app code

* Use environment variable RESOURCE_PATH when running as a bundle

* Move config files to system config location
2023-12-16 22:20:24 -06:00

8 lines
113 B
Python
Executable File

#!/usr/bin/env python3
from src import init
if __name__ == '__main__':
import sys
sys.exit(init.run())