Files
common-server-public/bbs-go/server/internal/cache/utils.go
2025-03-03 17:43:50 +08:00

10 lines
116 B
Go

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