mirror of
https://github.com/gavanfantom/jlc-chart.git
synced 2026-09-11 07:20:55 +01:00
10 lines
173 B
Python
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()
|