From 46e07b7577f8d57fed2827f668866ad196119ce8 Mon Sep 17 00:00:00 2001 From: nquidox Date: Sat, 21 Feb 2026 16:07:19 +0300 Subject: [PATCH] bugfix --- publisher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publisher.go b/publisher.go index 0743889..a65154a 100644 --- a/publisher.go +++ b/publisher.go @@ -8,7 +8,7 @@ import ( ) type Publisher interface { - Start(chanLen uint) chan<- []byte + Start(ctx context.Context, chanLen uint) chan<- []byte } type pubHandler struct {