diff --git a/internal/redis/channel.go b/internal/redis/channel.go index 77b4350..b80951a 100644 --- a/internal/redis/channel.go +++ b/internal/redis/channel.go @@ -13,8 +13,8 @@ type ChannelInterface interface { // Standard channel. Just a wrapper around string slice type Channel []string -func (c *Channel) Append(name string) { - *c = append(*c, name) +func (c *Channel) Append(name ...string) { + *c = append(*c, name...) } func (c Channel) String() string {