feat(api): managed-saas - additional routes
This commit is contained in:
parent
6e6f5b11b2
commit
03fe3a36d8
1 changed files with 5 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ from starlette.responses import StreamingResponse
|
|||
from chalicelib.utils import helper
|
||||
from chalicelib.utils import pg_client
|
||||
from crons import core_crons, core_dynamic_crons
|
||||
from routers import core, core_dynamic
|
||||
from routers import core, core_dynamic, additional_routes
|
||||
from routers.subs import insights, metrics, v1_api, health
|
||||
|
||||
loglevel = config("LOGLEVEL", default=logging.WARNING)
|
||||
|
|
@ -94,6 +94,10 @@ app.include_router(health.public_app)
|
|||
app.include_router(health.app)
|
||||
app.include_router(health.app_apikey)
|
||||
|
||||
app.include_router(additional_routes.public_app)
|
||||
app.include_router(additional_routes.app)
|
||||
app.include_router(additional_routes.app_apikey)
|
||||
|
||||
# @app.get('/private/shutdown', tags=["private"])
|
||||
# async def stop_server():
|
||||
# logging.info("Requested shutdown")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue