Load loads a chart
()
| 108 | |
| 109 | // Load loads a chart |
| 110 | func (l FileLoader) Load() (chart.Charter, error) { |
| 111 | return LoadFile(string(l)) |
| 112 | } |
| 113 | |
| 114 | func LoadFile(name string) (chart.Charter, error) { |
| 115 | if fi, err := os.Stat(name); err != nil { |
nothing calls this directly
no test coverage detected