ChartLoader loads a chart.
| 38 | |
| 39 | // ChartLoader loads a chart. |
| 40 | type ChartLoader interface { |
| 41 | Load() (*chart.Chart, error) |
| 42 | } |
| 43 | |
| 44 | // Loader returns a new ChartLoader appropriate for the given chart name |
| 45 | func Loader(name string) (ChartLoader, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…