summaryrefslogtreecommitdiff
path: root/plugins/channel/interface.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/channel/interface.go')
-rw-r--r--plugins/channel/interface.go4
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{}
}