bastebin/wsgi.py

7 lines
82 B
Python

from app import app, init_db
init_db()
if __name__ == '__main__':
app.run()