dione/cache/cache_manager.go

7 lines
119 B
Go
Raw Permalink Normal View History

package cache
type CacheManager interface {
// Cache returns kv cache with specific name
Cache(name string) Cache
}