(ctx context.Context, key, val string)
| 86 | } |
| 87 | |
| 88 | func (m NamespacedResolver) UpsertRuntimeConfig(ctx context.Context, key, val string) error { |
| 89 | return m.wrapped.UpsertRuntimeConfig(ctx, m.namespacedKey(key), val) |
| 90 | } |
| 91 | |
| 92 | func (m NamespacedResolver) DeleteRuntimeConfig(ctx context.Context, key string) error { |
| 93 | return m.wrapped.DeleteRuntimeConfig(ctx, m.namespacedKey(key)) |
nothing calls this directly
no test coverage detected