init commit

This commit is contained in:
2023-08-10 12:27:18 +08:00
commit 56f93165ba
21 changed files with 457 additions and 0 deletions

16
app/api/v1/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
from apiflask import APIBlueprint
from app.api.v1.api import api
def create_v1():
bp_v1 = APIBlueprint('v1', __name__)
bp_v1.register_blueprint(api, url_prefix='/api')
return bp_v1