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

10 lines
177 B
Go
Raw Normal View History

2021-12-03 04:15:48 +01:00
package cache
import "time"
type SetGetKey interface {
Set(key string, value interface{}, ttl time.Duration) error
Get(key string) (interface{}, bool)
2021-12-03 04:32:30 +01:00
Remove(key string)
2021-12-03 04:15:48 +01:00
}