String returns a string representation of the Config.
()
| 560 | |
| 561 | // String returns a string representation of the Config. |
| 562 | func (c *Config) String() string { |
| 563 | s, _ := c.MarshalJSON() |
| 564 | return string(s) |
| 565 | } |
| 566 | |
| 567 | // The following fields correspond 1:1 with the JSON schema for Config. |
| 568 | type configJSON struct { |
nothing calls this directly
no test coverage detected