mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
✨ init collections
This commit is contained in:
parent
040f91b608
commit
02a95c42dd
3 changed files with 199 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
from fastapi import APIRouter
|
||||
from src.routers import courses, users, auth, houses, orgs, roles
|
||||
from src.routers import collections, courses, users, auth, houses, orgs, roles
|
||||
from starlette.responses import FileResponse
|
||||
|
||||
|
||||
|
|
@ -13,3 +13,5 @@ global_router.include_router(houses.router, prefix="/houses", tags=["houses"])
|
|||
global_router.include_router(orgs.router, prefix="/orgs", tags=["orgs"])
|
||||
global_router.include_router(roles.router, prefix="/roles", tags=["roles"])
|
||||
global_router.include_router(courses.router, prefix="/courses", tags=["courses"])
|
||||
global_router.include_router(collections.router, prefix="/collections", tags=["collections"])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue