ValidateAndSetConfig see papiv1.Configurer.
(config interface{})
| 86 | |
| 87 | // ValidateAndSetConfig see papiv1.Configurer. |
| 88 | func (c *PluginV1Instance) ValidateAndSetConfig(config interface{}) error { |
| 89 | if c.configurer != nil { |
| 90 | return c.configurer.ValidateAndSetConfig(config) |
| 91 | } |
| 92 | return nil |
| 93 | } |
| 94 | |
| 95 | // GetDisplay see papiv1.Displayer. |
| 96 | func (c *PluginV1Instance) GetDisplay(location *url.URL) string { |
nothing calls this directly
no test coverage detected