5 lines
97 B
Python
5 lines
97 B
Python
|
|
from app import create_app
|
||
|
|
|
||
|
|
app = create_app()
|
||
|
|
app.run(host="127.0.0.1", port=5005, debug=False)
|