mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 11:59:26 +00:00
fix: remove mention of debug route
This commit is contained in:
parent
da4fd9c233
commit
76b607ff2f
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import os
|
|||
from fastapi import APIRouter, Depends
|
||||
from src.routers import health
|
||||
from src.routers import usergroups
|
||||
from src.routers import dev, trail, users, auth, orgs, roles, search, debug
|
||||
from src.routers import dev, trail, users, auth, orgs, roles, search
|
||||
from src.routers.ai import ai
|
||||
from src.routers.courses import chapters, collections, courses, assignments, certifications
|
||||
from src.routers.courses.activities import activities, blocks
|
||||
|
|
@ -49,7 +49,7 @@ if os.environ.get("CLOUD_INTERNAL_KEY"):
|
|||
)
|
||||
|
||||
v1_router.include_router(health.router, prefix="/health", tags=["health"])
|
||||
v1_router.include_router(debug.router, prefix="/debug", tags=["debug"])
|
||||
# v1_router.include_router(debug.router, prefix="/debug", tags=["debug"])
|
||||
|
||||
# Dev Routes
|
||||
v1_router.include_router(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue