├── .gitignore ├── .travis.yml ├── LICENCE ├── Makefile ├── README.md ├── api.go ├── api_test.go ├── cmd └── apidemic │ └── main.go ├── fixtures ├── response.json ├── sample.json └── sample_request.json ├── json.go ├── json_test.go ├── tags.go └── tags_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/README.md -------------------------------------------------------------------------------- /api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/api.go -------------------------------------------------------------------------------- /api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/api_test.go -------------------------------------------------------------------------------- /cmd/apidemic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/cmd/apidemic/main.go -------------------------------------------------------------------------------- /fixtures/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/fixtures/response.json -------------------------------------------------------------------------------- /fixtures/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/fixtures/sample.json -------------------------------------------------------------------------------- /fixtures/sample_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/fixtures/sample_request.json -------------------------------------------------------------------------------- /json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/json.go -------------------------------------------------------------------------------- /json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/json_test.go -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/tags.go -------------------------------------------------------------------------------- /tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/apidemic/HEAD/tags_test.go --------------------------------------------------------------------------------