Files
Snap.Server/run.py

7 lines
99 B
Python
Raw Normal View History

2025-12-28 17:01:42 +08:00
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(debug=True)