stub of tiered cache
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
package cache
|
||||
|
||||
type Interface[K comparable, V any] interface {
|
||||
Get(key K) V
|
||||
Put(key K, value V)
|
||||
}
|
||||
Reference in New Issue
Block a user