MCPcopy Index your code
hub / github.com/coder/coder / UpsertRuntimeConfig

Method UpsertRuntimeConfig

coderd/runtimeconfig/resolver.go:88–90  ·  view source on GitHub ↗
(ctx context.Context, key, val string)

Source from the content-addressed store, hash-verified

86}
87
88func (m NamespacedResolver) UpsertRuntimeConfig(ctx context.Context, key, val string) error {
89 return m.wrapped.UpsertRuntimeConfig(ctx, m.namespacedKey(key), val)
90}
91
92func (m NamespacedResolver) DeleteRuntimeConfig(ctx context.Context, key string) error {
93 return m.wrapped.DeleteRuntimeConfig(ctx, m.namespacedKey(key))

Callers

nothing calls this directly

Calls 2

namespacedKeyMethod · 0.95
UpsertRuntimeConfigMethod · 0.65

Tested by

no test coverage detected