mirror of
https://github.com/foomo/posh.git
synced 2026-07-02 07:30:08 +00:00
8 lines
131 B
Go
8 lines
131 B
Go
package cache
|
|
|
|
type Cache interface {
|
|
Get(namespace string) Namespace
|
|
Clear(namespaces ...string)
|
|
List() map[string]Namespace
|
|
}
|