(ctx context.Context, namespace string)
| 27 | type Store interface { |
| 28 | Create(ctx context.Context, namespace string, labels map[string]string) error |
| 29 | Labels(ctx context.Context, namespace string) (map[string]string, error) |
| 30 | SetLabel(ctx context.Context, namespace, key, value string) error |
| 31 | List(ctx context.Context) ([]string, error) |
| 32 |