1
0
Fork 0
mirror of https://codeberg.org/Codeberg/pages-server.git synced 2025-08-10 19:00:54 +00:00
pages-server/server/cache/interface.go

9 lines
177 B
Go

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