├── .github └── workflows │ └── go.yml ├── LICENSE ├── README.md ├── go.mod ├── jsonfile.go └── jsonfile_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawshaw/jsonfile/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawshaw/jsonfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawshaw/jsonfile/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module crawshaw.dev/jsonfile 2 | 3 | go 1.21.6 4 | -------------------------------------------------------------------------------- /jsonfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawshaw/jsonfile/HEAD/jsonfile.go -------------------------------------------------------------------------------- /jsonfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawshaw/jsonfile/HEAD/jsonfile_test.go --------------------------------------------------------------------------------