CorentinTh / it-tools

Collection of handy online tools for developers, with great UX.
https://it-tools.tech
GNU General Public License v3.0
21.72k stars 2.6k forks source link

JSON-to-Go #655

Open pzghost opened 12 months ago

pzghost commented 12 months ago

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/

lemon8866 commented 11 months ago

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

itswcg commented 10 months ago

Please merge the PR.

sharevb commented 5 months ago

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