posh/pkg/cache/cache.go
Kevin Franklin Kim 3a81a2482f
feat: use sync map
2025-04-04 16:32:53 +02:00

8 lines
131 B
Go

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