(ctx context.Context, key string)
| 185 | // remote client does not implement it, so /config hub mutation is local-only. |
| 186 | type hubSettingsClient interface { |
| 187 | GetSetting(ctx context.Context, key string) (string, bool, error) |
| 188 | SetSetting(ctx context.Context, key, value string) error |
| 189 | DeleteSetting(ctx context.Context, key string) error |
| 190 | AllSettings(ctx context.Context) (map[string]string, error) |
no outgoing calls
no test coverage detected