Files
go-nostr/sdk/cache/interface.go
2023-10-30 19:23:58 -03:00

11 lines
186 B
Go

package cache
import "time"
type Cache32[V any] interface {
Get(k string) (v V, ok bool)
Delete(k string)
Set(k string, v V) bool
SetWithTTL(k string, v V, d time.Duration) bool
}