all repos

json2go @ 917fe25

convert json to go type annotations
name last commit last update
.github/ init 6 months ago 2025-11-26 19:49:04 EET
cmd/ implement the cli 6 months ago 2025-11-26 22:31:35 EET
go.mod init 6 months ago 2025-11-26 19:49:04 EET
json2go.go i might have over done it 6 months ago 2025-11-26 22:31:34 EET
json2go_internal_test.go i might have over done it 6 months ago 2025-11-26 22:31:34 EET
json2go_test.go feat: validate provided struct name 6 months ago 2025-11-26 20:05:07 EET
readme.txt init 6 months ago 2025-11-26 19:49:04 EET
json2go
-------

json2go to go provides a library and cli tool for
convening json strings to go struct definitions

    t := json2go. NewTransformer()
    typedef, _ := t.Transform(jsonStr, "TypeName")


cli interface:

    go install olexsmir.xyz/json2go/cmd/json2go@latest

    echo "{...}" | json2go
    json2go "{...}"