summaryrefslogtreecommitdiffstats
path: root/modules/queue/queue.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/queue/queue.go')
-rw-r--r--modules/queue/queue.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/queue/queue.go b/modules/queue/queue.go
index 7159048c11..80a9f1f2c7 100644
--- a/modules/queue/queue.go
+++ b/modules/queue/queue.go
@@ -39,7 +39,7 @@ type Data interface{}
type HandlerFunc func(...Data)
// NewQueueFunc is a function that creates a queue
-type NewQueueFunc func(handler HandlerFunc, config interface{}, exemplar interface{}) (Queue, error)
+type NewQueueFunc func(handler HandlerFunc, config, exemplar interface{}) (Queue, error)
// Shutdownable represents a queue that can be shutdown
type Shutdownable interface {
@@ -70,8 +70,7 @@ func NewDummyQueue(handler HandlerFunc, opts, exemplar interface{}) (Queue, erro
}
// DummyQueue represents an empty queue
-type DummyQueue struct {
-}
+type DummyQueue struct{}
// Run does nothing
func (*DummyQueue) Run(_, _ func(func())) {}