5 lines
116 B
Python
5 lines
116 B
Python
from app.app import init_app
|
|
|
|
if __name__ == '__main__':
|
|
app = init_app()
|
|
app.run(debug=True, threaded=True) |