This commit is contained in:
han0
2024-05-29 10:21:31 +08:00
commit 54ac29d27b
119 changed files with 6817 additions and 0 deletions

5
web/api/blueprint.py Normal file
View File

@@ -0,0 +1,5 @@
from flask import Blueprint
root = Blueprint('root', __name__, url_prefix='/')
#
data = Blueprint('data', __name__, url_prefix='/data')