all repos

json2go @ 34a739e

convert json to go type annotations

json2go/readme.txt (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
chore: update readme, 6 months ago
1
json2go
2
-------
3
4
json2go to go provides a library and cli tool for
5
converting json strings to go struct definitions
6
7
    t := json2go. NewTransformer()
8
    typedef, err := t.Transform(`{"json": true}`, "TypeName")
9
10
11
cli interface:
12
13
    go install olexsmir.xyz/json2go/cmd/json2go@latest
14
15
    echo '{"id": 1, "name": "Alice"}' | json2go
16
    json2go '{"id": 1, "name": "Alice"}'