Enable enables the plugin.
()
| 61 | |
| 62 | // Enable enables the plugin. |
| 63 | func (c *EchoPlugin) Enable() error { |
| 64 | log.Println("echo plugin enabled") |
| 65 | return nil |
| 66 | } |
| 67 | |
| 68 | // Disable disables the plugin. |
| 69 | func (c *EchoPlugin) Disable() error { |
nothing calls this directly
no outgoing calls
no test coverage detected