(ctx context.Context, key string)
| 34 | // Store is a subset of database.Store |
| 35 | type Store interface { |
| 36 | GetRuntimeConfig(ctx context.Context, key string) (string, error) |
| 37 | UpsertRuntimeConfig(ctx context.Context, arg database.UpsertRuntimeConfigParams) error |
| 38 | DeleteRuntimeConfig(ctx context.Context, key string) error |
| 39 | } |
no outgoing calls