blob: 173ced4dc632013bcd48f59cba78ee2900f16c1f (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python3
import sys
import os
os.chdir("/usr/share/fighter-1")
sys.path.insert(0, "/usr/share/fighter-1")
if __name__ == "__main__":
from fighter.app import main
raise SystemExit(main())
|