it-tools
it-tools copied to clipboard
JSON-to-Go
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/
I have added this tool to this PR #732 , using the tools you provided on the website
Please merge the PR.
Hi @pzghost, @lemon8866 and @CorentinTh, took the PR of @lemon8866 to #1031