diff options
author | Valery Piashchynski <[email protected]> | 2021-05-31 16:05:00 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-05-31 16:05:00 +0300 |
commit | 49703d70a3ede70ce9a0cab824cbcb96dbf824c0 (patch) | |
tree | 181d72a3321d52c960a519ba3a233e3e7fe8e86a /plugins/channel/interface.go | |
parent | 0ee91dc24d3e68706d89092c06b1c0d09dab0353 (diff) |
- Rework access_validators
- WS plugin uses it's own pool to handle requests on the /ws (or any
user-defined) endpoint
- Ability to write custom validators
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/channel/interface.go')
-rw-r--r-- | plugins/channel/interface.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/channel/interface.go b/plugins/channel/interface.go deleted file mode 100644 index 50fc9c96..00000000 --- a/plugins/channel/interface.go +++ /dev/null @@ -1,8 +0,0 @@ -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{} -} |