Files
common-server-public/archive/bbs-go/server/internal/cache/utils.go
12600k-rog-d4 8f4d399cfd 20251209
2025-12-09 20:33:57 +08:00

10 lines
116 B
Go

package cache
import (
"github.com/goburrow/cache"
)
func key2Int64(key cache.Key) int64 {
return key.(int64)
}