From 85a65ebffeb60354b22d039a7590e2096d75dcc2 Mon Sep 17 00:00:00 2001 From: Antonio Mika Date: Thu, 3 Oct 2024 15:30:28 -0400 Subject: [PATCH] Fix interface guard --- multicast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multicast.go b/multicast.go index 0774639..23d5a71 100644 --- a/multicast.go +++ b/multicast.go @@ -81,4 +81,4 @@ func (p *Multicast) Sub(ctx context.Context, ID string, rw io.ReadWriter, channe return errors.Join(p.connect(ctx, ID, rw, channels, ChannelDirectionOutput, false, false, keepAlive)) } -var _ = (*Multicast)(nil) +var _ PubSub = (*Multicast)(nil)