mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-18 05:42:20 +01:00
11 lines
186 B
Go
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
|
|
}
|