Disable disables the plugin.
()
| 67 | |
| 68 | // Disable disables the plugin. |
| 69 | func (c *EchoPlugin) Disable() error { |
| 70 | log.Println("echo plugin disbled") |
| 71 | return nil |
| 72 | } |
| 73 | |
| 74 | // RegisterWebhook implements plugin.Webhooker. |
| 75 | func (c *EchoPlugin) RegisterWebhook(baseURL string, g *gin.RouterGroup) { |
nothing calls this directly
no outgoing calls
no test coverage detected