(ctx context.Context, key string)
| 90 | } |
| 91 | |
| 92 | func (m NamespacedResolver) DeleteRuntimeConfig(ctx context.Context, key string) error { |
| 93 | return m.wrapped.DeleteRuntimeConfig(ctx, m.namespacedKey(key)) |
| 94 | } |
| 95 | |
| 96 | func (m NamespacedResolver) namespacedKey(k string) string { |
| 97 | return fmt.Sprintf("%s:%s", m.ns, k) |
nothing calls this directly
no test coverage detected