()
| 50 | } |
| 51 | |
| 52 | func (p *githubPlugin) Fetch() ([]byte, error) { |
| 53 | content, err := p.FileContent(pluginConfigName) |
| 54 | if err != nil { |
| 55 | return nil, err |
| 56 | } |
| 57 | return jsonPurifyPluginContent(content) |
| 58 | } |
| 59 | |
| 60 | func (p *githubPlugin) CanonicalName() string { |
| 61 | return p.name |
nothing calls this directly
no test coverage detected