(ctx context.Context, key string)
| 82 | } |
| 83 | |
| 84 | func (m NamespacedResolver) GetRuntimeConfig(ctx context.Context, key string) (string, error) { |
| 85 | return m.wrapped.GetRuntimeConfig(ctx, m.namespacedKey(key)) |
| 86 | } |
| 87 | |
| 88 | func (m NamespacedResolver) UpsertRuntimeConfig(ctx context.Context, key, val string) error { |
| 89 | return m.wrapped.UpsertRuntimeConfig(ctx, m.namespacedKey(key), val) |
nothing calls this directly
no test coverage detected