(ctx context.Context, key string)
| 67 | } |
| 68 | |
| 69 | func (m StoreResolver) DeleteRuntimeConfig(ctx context.Context, key string) error { |
| 70 | return m.db.DeleteRuntimeConfig(ctx, key) |
| 71 | } |
| 72 | |
| 73 | // NamespacedResolver prefixes all keys with a namespace. |
| 74 | // Then defers to the underlying resolver for the actual operations. |
nothing calls this directly
no test coverage detected