feat: add apis of user info
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-08-15 17:49:05 +08:00
parent 72bee4d3e1
commit d322c9488a
5 changed files with 83 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ from apiflask import APIBlueprint
from app.api.v1.api import api
from app.api.v1.auth import auth
from app.api.v1.record import record
from app.api.v1.user import user
def create_v1():
@@ -10,6 +11,7 @@ def create_v1():
bp_v1.register_blueprint(api, url_prefix='/api')
bp_v1.register_blueprint(auth, url_prefix='/auth')
bp_v1.register_blueprint(record, url_prefix='/record')
bp_v1.register_blueprint(user, url_prefix='/user')
return bp_v1