5 lines
101 B
Python
5 lines
101 B
Python
from app import app
|
|
|
|
if '__main__' == __name__:
|
|
app.run(host='0.0.0.0', port=10010, debug=False)
|