6 lines
150 B
Python
6 lines
150 B
Python
from app import create_app
|
|
|
|
# Create an application instance that web servers can use.
|
|
application = create_app('config/flask.cfg')
|
|
application.run()
|