Serializating the Tag structure

This commit is contained in:
yura 2021-02-24 17:26:05 +03:00
parent e68199efb3
commit bf6cf4312c

9
v5/marshaling.go Normal file
View file

@ -0,0 +1,9 @@
package v5
import "encoding/json"
func (t Tag) MarshalJSON() ([]byte, error) {
name, err := json.Marshal(t.Name)
return name, err
}