7 lines
112 B
Python
7 lines
112 B
Python
from app import create_app
|
|
|
|
app = create_app('development')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True)
|