Chore: remove unused WCMap
This commit is contained in:
@ -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))
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
Reference in New Issue
Block a user