From 75dc5f7d571e5a35c16e80b8c2027cb51b1d12c1 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Tue, 29 Dec 2020 12:00:24 -0500 Subject: [PATCH] Fix lint fail --- msg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msg.go b/msg.go index ada6f78..9b2c172 100644 --- a/msg.go +++ b/msg.go @@ -100,7 +100,7 @@ type Message interface { // IsUnion function is necessary to make the type compatible with the Union // interface -func (_ MessageV1) IsUnion() {} +func (t MessageV1) IsUnion() {} func init() { bare.RegisterUnion((*Message)(nil)). -- 2.38.5