diff --git a/tpl/macros_struct.twig b/tpl/macros_struct.twig index 190a5b1..2c1bf76 100644 --- a/tpl/macros_struct.twig +++ b/tpl/macros_struct.twig @@ -43,7 +43,7 @@ type {{ s.name }} struct { {%~ for f in pkey %} - {{ f|fname }} {{ f.type|go_type }} `json:"{{ f|alias }},string" msgpack:"{{ f|alias }}"` + {{ f|fname }} {{ f.type|go_type }} `json:"{{ f|alias }}" msgpack:"{{ f|alias }}"` {%~ endfor %} {{ json_fields_type }} @@ -51,7 +51,7 @@ type {{ s.name }} struct { type {{ json_fields_type }} struct{ {%~ for f in json_fields %} - {{ f|fname }} {{ f.type|go_type }} `json:"{{ f|alias }},string" msgpack:"{{ f|alias }}"` + {{ f|fname }} {{ f.type|go_type }} `json:"{{ f|alias }}" msgpack:"{{ f|alias }}"` {%~ endfor %} changedFields meta.ChangedFields @@ -882,7 +882,7 @@ type {{ s.name }} struct { {% endif %} {% for f in s.fields %} - {{ f|fname }} {{ f.type|go_type(f.tokens) }} `json:"{{ f|alias }},string" msgpack:"{{ f|alias }}"` + {{ f|fname }} {{ f.type|go_type(f.tokens) }} `json:"{{ f|alias }}" msgpack:"{{ f|alias }}"` {% endfor %} {% if has_token(s, 'bitfields') %}