🧪 Test json.Marshaler implementation for Entry

This commit is contained in:
Dan Jones 2024-01-28 19:23:51 -06:00
commit 7e1c51d698
2 changed files with 46 additions and 0 deletions

View file

@ -155,3 +155,7 @@ func (e *Entry) getFieldUnarshalChan(in []byte) chan Meta {
}()
return ch
}
func (e Entry) MarshalJSON() ([]byte, error) {
return []byte(`{}`), nil
}