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 717d7d6 commit 902dbe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icon_contracts/api/v1/router.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from fastapi import APIRouter
from icon_contracts.api.v1.endpoints import contracts

api_router = APIRouter()
api_router = APIRouter(tags=["contracts"])
api_router.include_router(contracts.router)

0 comments on commit 902dbe0

Please sign in to comment.