🧪 Test json.Unmarshaler implementation for Entry

This commit is contained in:
Dan Jones 2024-01-28 22:02:57 -06:00
commit eff9a454f9
2 changed files with 86 additions and 0 deletions

View file

@ -178,3 +178,7 @@ func (e Entry) MarshalJSON() ([]byte, error) {
}
return json.Marshal(out)
}
func (e *Entry) UnmarshalJSON([]byte) error {
return nil
}