7 lines
115 B
Python
7 lines
115 B
Python
from web_app import create_app
|
|
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
app.run(port=7467 ,debug=False) |