pages-server/server/cache/interface.go
crapStone 0e334d8e64 WIP
2023-11-17 21:47:15 +00:00

10 lines
174 B
Go

package cache
import "time"
type ICache interface {
Set(key string, value interface{}, ttl time.Duration) error
Get(key string) (interface{}, bool)
Remove(key string)
}