diff options
author | Valery Piashchynski <[email protected]> | 2021-06-25 14:21:53 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-25 14:21:53 +0300 |
commit | ad1ca84b26bb6a4ba410a8a684fe3d2e2f86eaea (patch) | |
tree | 9d426322de665a47b059d094eebb034f43673269 /pkg/priority_queue/interface.go | |
parent | 09041fe7499be1929aaffaa113f93f6853564c09 (diff) |
- Update jobs interface
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg/priority_queue/interface.go')
-rw-r--r-- | pkg/priority_queue/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/priority_queue/interface.go b/pkg/priority_queue/interface.go index d1c3229f..5945a013 100644 --- a/pkg/priority_queue/interface.go +++ b/pkg/priority_queue/interface.go @@ -2,6 +2,6 @@ package priorityqueue type Queue interface { Push() - Pop() + Pop() interface{} BLPop() } |