jsonToolConfig implements ToolConfig backed by a JSON file.
| 11 | |
| 12 | // jsonToolConfig implements ToolConfig backed by a JSON file. |
| 13 | type jsonToolConfig struct { |
| 14 | spec spec |
| 15 | } |
| 16 | |
| 17 | func newJSONToolConfig(s spec) *jsonToolConfig { |
| 18 | return &jsonToolConfig{spec: s} |
nothing calls this directly
no outgoing calls
no test coverage detected