TinySkin/db/cache/cache.go
2023-09-03 17:00:10 +08:00

10 lines
157 B
Go

package cache
import "time"
type Cache interface {
Del(k []byte) error
Get(k []byte) ([]byte, error)
Put(k []byte, v []byte, timeOut time.Time) error
}