it-tools icon indicating copy to clipboard operation
it-tools copied to clipboard

JSON-to-Go

Open pzghost opened this issue 2 years ago • 2 comments

What tool do you want? converts JSON into a Go type definition

Describe the solution you'd like

Is their example of this tool in the wild? input:

{"k1":"v1","k2":"v2"} 

output:

type AutoGenerated struct {
	K1 string `json:"k1"`
	K2 string `json:"k2"`
}

Additional context like: https://mholt.github.io/json-to-go/

pzghost avatar Oct 10 '23 03:10 pzghost

I have added this tool to this PR #732 , using the tools you provided on the website

lemon8866 avatar Nov 08 '23 05:11 lemon8866

Please merge the PR.

jmperdev avatar Nov 23 '23 01:11 jmperdev

Hi @pzghost, @lemon8866 and @CorentinTh, took the PR of @lemon8866 to #1031

sharevb avatar May 05 '24 22:05 sharevb