All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
8 lines
113 B
Go
8 lines
113 B
Go
package cache
|
|
|
|
type Cache[K comparable, V any] interface {
|
|
Get(key K) (V, bool)
|
|
Set(key K, value V)
|
|
Clear()
|
|
}
|