coriplus/run_example.py

9 lines
124 B
Python
Raw Normal View History

2019-05-01 15:33:28 +02:00
#!/usr/bin/env python
import sys
sys.path.insert(0, '../..')
from app import app, create_tables
create_tables()
app.run()