├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── default_id.go ├── http_error.go ├── karma ├── go │ └── rest_test.go ├── test-mac.conf.js └── test.sh ├── rest.go └── test └── server ├── README.md ├── main.go └── tmp └── runner-build /.gitignore: -------------------------------------------------------------------------------- 1 | karma/js -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/README.md -------------------------------------------------------------------------------- /default_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/default_id.go -------------------------------------------------------------------------------- /http_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/http_error.go -------------------------------------------------------------------------------- /karma/go/rest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/karma/go/rest_test.go -------------------------------------------------------------------------------- /karma/test-mac.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/karma/test-mac.conf.js -------------------------------------------------------------------------------- /karma/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/karma/test.sh -------------------------------------------------------------------------------- /rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/rest.go -------------------------------------------------------------------------------- /test/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/test/server/README.md -------------------------------------------------------------------------------- /test/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/test/server/main.go -------------------------------------------------------------------------------- /test/server/tmp/runner-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/rest/HEAD/test/server/tmp/runner-build --------------------------------------------------------------------------------