posh/pkg/cache/cache.go
Kevin Franklin Kim e2ad376b6c initial commit
2023-01-03 15:37:15 +01:00

8 lines
127 B
Go

package cache
type Cache interface {
Get(namespace string) Namespace
Clear(namespace string)
List() map[string]Namespace
}