feature: 添加静态文件

This commit is contained in:
zhengxinonly
2023-09-29 14:57:03 +08:00
parent 2c3c79b21f
commit ba5e2cf67b
68 changed files with 153780 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
from flask import Flask
from .index import index_bp
def register_views(app: Flask):
app.register_blueprint(index_bp)