blob: 50fc9c963fe2fd09b599eaee1438b02f79388ec2 (
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 {
FromWorker() chan interface{}
ToWorker() chan interface{}
}
|