EchoPlugin is the gotify plugin instance.
| 20 | |
| 21 | // EchoPlugin is the gotify plugin instance. |
| 22 | type EchoPlugin struct { |
| 23 | msgHandler plugin.MessageHandler |
| 24 | storageHandler plugin.StorageHandler |
| 25 | config *Config |
| 26 | basePath string |
| 27 | } |
| 28 | |
| 29 | // SetStorageHandler implements plugin.Storager |
| 30 | func (c *EchoPlugin) SetStorageHandler(h plugin.StorageHandler) { |
nothing calls this directly
no outgoing calls
no test coverage detected