x/cache/interface.go

7 lines
100 B
Go
Raw Permalink Normal View History

2022-12-15 22:00:51 -08:00
package cache
type Interface[K comparable, V any] interface {
Get(key K) V
Put(key K, value V)
}