blob: 9a405e8935adb8f3c47673b10239398e1a7d08fe (
plain)
1
2
3
4
5
6
7
8
|
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{}
}
|