├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── cadet.go ├── cadet_test.go ├── go.mod ├── request.go └── response.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/README.md -------------------------------------------------------------------------------- /cadet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/cadet.go -------------------------------------------------------------------------------- /cadet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/cadet_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/martinrue/cadet 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/request.go -------------------------------------------------------------------------------- /response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrue/cadet/HEAD/response.go --------------------------------------------------------------------------------