├── .github └── workflows │ └── ci.yaml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── simplejson.go ├── simplejson_reader.go ├── simplejson_reader_test.go └── simplejson_test.go /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/bitly/go-simplejson 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simplejson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/simplejson.go -------------------------------------------------------------------------------- /simplejson_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/simplejson_reader.go -------------------------------------------------------------------------------- /simplejson_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/simplejson_reader_test.go -------------------------------------------------------------------------------- /simplejson_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/go-simplejson/HEAD/simplejson_test.go --------------------------------------------------------------------------------