7 lines
119 B
Go
7 lines
119 B
Go
|
package cache
|
||
|
|
||
|
type CacheManager interface {
|
||
|
// Cache returns kv cache with specific name
|
||
|
Cache(name string) Cache
|
||
|
}
|