Files
jlc-chart/wsgi.py
2021-12-02 14:21:35 +00:00

10 lines
173 B
Python

#!/usr/bin/env python3
import sys
from os import path
sys.path.insert(0, path.abspath(path.dirname(__file__)))
from jlcchart import create_app
application = create_app()