PluginReader is an interface for input plugins
| 13 | |
| 14 | // PluginReader is an interface for input plugins |
| 15 | type PluginReader interface { |
| 16 | PluginRead() (msg *Message, err error) |
| 17 | } |
| 18 | |
| 19 | // PluginWriter is an interface for output plugins |
| 20 | type PluginWriter interface { |
no outgoing calls
no test coverage detected