Chore: remove unused WCMap

This commit is contained in:
Grail Finder
2025-07-04 21:48:01 +03:00
parent 3af3657c7a
commit 3e9a93fbb1
5 changed files with 38 additions and 26 deletions

View File

@ -2,7 +2,6 @@ package handlers
import (
"context"
"fmt"
"gralias/models"
"log/slog"
"strconv"
@ -55,7 +54,7 @@ func StartTurnTimer(roomID string, timeLeft uint32) {
return
}
timeLeft--
notify(models.NotifyTurnTimerPrefix+roomID, fmt.Sprintf("%d", timeLeft))
notify(models.NotifyTurnTimerPrefix+roomID, strconv.FormatUint(uint64(timeLeft), 10))
}
}
}()