From bf6cf4312ce4b2e7d767c0a4f1326f572458f49d Mon Sep 17 00:00:00 2001 From: yura Date: Wed, 24 Feb 2021 17:26:05 +0300 Subject: [PATCH] Serializating the Tag structure --- v5/marshaling.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 v5/marshaling.go diff --git a/v5/marshaling.go b/v5/marshaling.go new file mode 100644 index 0000000..108e135 --- /dev/null +++ b/v5/marshaling.go @@ -0,0 +1,9 @@ +package v5 + +import "encoding/json" + +func (t Tag) MarshalJSON() ([]byte, error) { + name, err := json.Marshal(t.Name) + + return name, err +}