This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/run.py
T
2026-02-24 16:18:19 +01:00

6 lines
108 B
Python

from app import create_app, sIO
app = create_app()
if __name__ == "__main__":
sIO.run(app, debug=True)