mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-15 07:05:51 +00:00
6 lines
145 B
Python
Executable File
6 lines
145 B
Python
Executable File
#!/usr/bin/env python
|
|
from beflask import app
|
|
|
|
socketio, app = app.create_app(return_socketio=True)
|
|
socketio.run(app, debug=app.config["DEBUG"])
|