├── .github ├── FUNDING.yml └── workflows │ └── node-tests.yml ├── LICENSE ├── README.md ├── json-to-go.js ├── json-to-go.test.js ├── sample.json └── tests ├── array-with-mixed-float-int.go ├── array-with-mixed-float-int.json ├── array-with-nonmatching-types.go ├── array-with-nonmatching-types.json ├── double-nested-objects.go ├── double-nested-objects.json ├── duplicate-top-level-structs.go └── duplicate-top-level-structs.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/.github/workflows/node-tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/README.md -------------------------------------------------------------------------------- /json-to-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/json-to-go.js -------------------------------------------------------------------------------- /json-to-go.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/json-to-go.test.js -------------------------------------------------------------------------------- /sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/sample.json -------------------------------------------------------------------------------- /tests/array-with-mixed-float-int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/array-with-mixed-float-int.go -------------------------------------------------------------------------------- /tests/array-with-mixed-float-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/array-with-mixed-float-int.json -------------------------------------------------------------------------------- /tests/array-with-nonmatching-types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/array-with-nonmatching-types.go -------------------------------------------------------------------------------- /tests/array-with-nonmatching-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/array-with-nonmatching-types.json -------------------------------------------------------------------------------- /tests/double-nested-objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/double-nested-objects.go -------------------------------------------------------------------------------- /tests/double-nested-objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/double-nested-objects.json -------------------------------------------------------------------------------- /tests/duplicate-top-level-structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/duplicate-top-level-structs.go -------------------------------------------------------------------------------- /tests/duplicate-top-level-structs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mholt/json-to-go/HEAD/tests/duplicate-top-level-structs.json --------------------------------------------------------------------------------