fix: fix colldown

This commit is contained in:
itqop 2025-10-15 22:56:19 +03:00
parent b47d461934
commit 736e12cd08
1 changed files with 3 additions and 3 deletions

View File

@ -28,10 +28,10 @@ async def check_cooldown(
@router.put("/touch")
async def touch_cooldown(
key: CooldownKey,
seconds: int = Query(..., description="Cooldown duration in seconds"),
player_uuid: UUID = Query(..., description="Player UUID"),
service: Annotated[CooldownsService, Depends(get_cooldowns_service)],
_: Annotated[str, Depends(verify_api_key)]
_: Annotated[str, Depends(verify_api_key)],
seconds: int = Query(..., description="Cooldown duration in seconds"),
player_uuid: UUID = Query(..., description="Player UUID")
):
"""Touch cooldown."""
try: