feat: add apis of user info
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user