Skip to content

Commit

Permalink
fix: add tags on router
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Oct 6, 2024
1 parent 5ae8704 commit dbca0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icon_stats/api/v1/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from icon_stats.api.v1.endpoints import exchanges_legacy, token_stats, openapi

api_router = APIRouter(prefix="/statistics")
api_router = APIRouter(prefix="/statistics",tags=["statistics"])
api_router.include_router(token_stats.router)
api_router.include_router(exchanges_legacy.router)
api_router.include_router(openapi.router)

0 comments on commit dbca0f4

Please sign in to comment.