Sort routes into tags
All checks were successful
Build and Publish college-bot-v2 / build_and_publish (push) Successful in 15s

This commit is contained in:
Nexus 2024-06-06 01:24:39 +01:00
parent 69bd4fca90
commit 5ffbd3635b
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -68,6 +68,7 @@ app = FastAPI(
truth_router = APIRouter( truth_router = APIRouter(
prefix="/truths", prefix="/truths",
dependencies=[Depends(check_credentials)], dependencies=[Depends(check_credentials)],
tags=["Truth Social"]
) )
@ -147,6 +148,7 @@ app.include_router(truth_router)
ollama_router = APIRouter( ollama_router = APIRouter(
prefix="/ollama", prefix="/ollama",
dependencies=[Depends(check_credentials)], dependencies=[Depends(check_credentials)],
tags=["Ollama"]
) )