1.3.0: Updated ONLINE.

This commit is contained in:
2026-01-27 02:20:55 +08:00
parent e006772e9c
commit a148c2d511
12 changed files with 36 additions and 3 deletions

12
wsgi.py Normal file
View File

@@ -0,0 +1,12 @@
import sys
import os
# Ensure the project root is in sys.path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from web.app import create_app
app = create_app()
if __name__ == "__main__":
app.run()