From 6960c3a587d18fcc2429164d085cf3859b63e629 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Wed, 28 Oct 2020 01:22:57 +0000 Subject: [PATCH] that was dumb --- internal/wire/ok.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/wire/ok.go b/internal/wire/ok.go index e76b591..f416341 100644 --- a/internal/wire/ok.go +++ b/internal/wire/ok.go @@ -4,8 +4,6 @@ type OK struct{} func (OK) NetTag() string { return "ok" } -func (OK) MarshalJSON() ([]byte, error) { return []byte(`"ok"`), nil } - func init() { Register(func() Value { return new(OK) }) }