Files
tutor-tool/run.py
2025-05-13 04:04:02 +02:00

7 lines
130 B
Python

from app import create_app, socketio
app = create_app()
if __name__ == '__main__':
socketio.run(app, port=5002, debug=True)