🧪 Test TextUnmarshaler implementation for Entry

This commit is contained in:
Dan Jones 2024-01-28 08:56:34 -06:00
commit 5b60305de7
2 changed files with 83 additions and 5 deletions

View file

@ -70,3 +70,7 @@ func (e Entry) MarshalText() ([]byte, error) {
return buff.Bytes(), nil
}
func (m *Entry) UnmarshalText(in []byte) error {
return nil
}