Skip to content

Commit 2d577f5

Browse files
committed
chore: remove tags
Signed-off-by: JP-Ellis <[email protected]>
1 parent e43da60 commit 2d577f5

File tree

1 file changed

+2
-2
lines changed
  • pypacter-api/src/pypacter_api

1 file changed

+2
-2
lines changed

pypacter-api/src/pypacter_api/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
router = APIRouter()
1414

1515

16-
@router.get("/health", tags=["health"])
16+
@router.get("/health")
1717
async def health() -> JSONResponse:
1818
"""
1919
Health check.
@@ -24,7 +24,7 @@ async def health() -> JSONResponse:
2424
return JSONResponse(content={"status": "ok"})
2525

2626

27-
@router.get("/version", tags=["version"])
27+
@router.get("/version")
2828
async def version() -> JSONResponse:
2929
"""
3030
Get the version of the API.

0 commit comments

Comments
 (0)