diff options
author | Valery Piashchynski <[email protected]> | 2021-05-29 11:27:49 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-05-29 11:27:49 +0300 |
commit | 09b982813f8825f776abf20fb16c6085439ca4ba (patch) | |
tree | 1c4593bdc42503616b06f32bb6ee676cca38515a /plugins/channel/interface.go | |
parent | fcda08498e8f914bbd0798da898818cd5d0e4348 (diff) |
- Update channel plugin interfaces
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/channel/interface.go')
-rw-r--r-- | plugins/channel/interface.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/channel/interface.go b/plugins/channel/interface.go index 9a405e89..50fc9c96 100644 --- a/plugins/channel/interface.go +++ b/plugins/channel/interface.go @@ -3,6 +3,6 @@ package channel // Hub used as a channel between two or more plugins // this is not a PUBLIC plugin, API might be changed at any moment type Hub interface { - SendCh() chan interface{} - ReceiveCh() chan interface{} + FromWorker() chan interface{} + ToWorker() chan interface{} } |