Initial commit: Office 365 Self Service - 兑换码自助开通系统

This commit is contained in:
youbin
2026-03-28 00:32:30 +08:00
commit 8f5a643ed3
16 changed files with 1219 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
from office365_self_service import create_app
app = create_app()
if __name__ == "__main__":
app.run(
host=app.config["SETTINGS"].host,
port=app.config["SETTINGS"].port,
debug=app.config["SETTINGS"].debug,
)