MogensR's picture
Update app.py
5bccacc
raw
history blame
167 Bytes
#!/usr/bin/env python3
import sys, os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from core.app import main
if __name__ == "__main__":
main()