8 lines
119 B
Python
8 lines
119 B
Python
from src.api.app import create_app
|
|
app = create_app()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True, port=5401)
|