Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
fix: Fix router doc
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Nov 5, 2023
1 parent b52fda0 commit 0510428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/api_v1/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

api_router = APIRouter()
api_router.include_router(login.router, prefix="/login", tags=["login"])
api_router.include_router(users.router, prefix="/users", tags=["access"])
api_router.include_router(users.router, prefix="/users", tags=["users"])
api_router.include_router(repos.router, prefix="/repos", tags=["repos"])
api_router.include_router(guidelines.router, prefix="/guidelines", tags=["guidelines"])
api_router.include_router(compute.router, prefix="/compute", tags=["compute"])

0 comments on commit 0510428

Please sign in to comment.