golint fixes

This commit is contained in:
Mat Ryer 2017-08-02 16:06:35 +01:00
parent bd3bf33613
commit 71d368f14f

View File

@ -1,7 +1,9 @@
package channels
// Queue is a type to be sent down a channel.
type Queue []string
// Queuer provides a channel example.
type Queuer interface {
Sub(topic string) (<-chan Queue, error)
}