backend implemented

This commit is contained in:
nyaco3
2026-05-26 20:05:13 +08:00
commit 5bb398c7f2
5 changed files with 833 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)