Files
tutor-tool/run.py
2025-05-13 22:16:55 +02:00

7 lines
107 B
Python

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