|
@ -81,9 +81,10 @@ def register_blueprints(app: Flask) -> None: |
|
|
:param app: |
|
|
:param app: |
|
|
:return: |
|
|
:return: |
|
|
""" |
|
|
""" |
|
|
from corvus.api import AUTH_BLUEPRINT, USER_BLUEPRINT |
|
|
|
|
|
|
|
|
from corvus.api import AUTH_BLUEPRINT, USER_BLUEPRINT, HEALTH_BLUEPRINT |
|
|
app.register_blueprint(AUTH_BLUEPRINT) |
|
|
app.register_blueprint(AUTH_BLUEPRINT) |
|
|
app.register_blueprint(USER_BLUEPRINT) |
|
|
app.register_blueprint(USER_BLUEPRINT) |
|
|
|
|
|
app.register_blueprint(HEALTH_BLUEPRINT) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def register_error_handlers(app: Flask) -> None: |
|
|
def register_error_handlers(app: Flask) -> None: |
|
|