├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── handler.go └── handler_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fukata/golang-stats-api-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fukata/golang-stats-api-handler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fukata/golang-stats-api-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fukata/golang-stats-api-handler/HEAD/README.md -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fukata/golang-stats-api-handler/HEAD/handler.go -------------------------------------------------------------------------------- /handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fukata/golang-stats-api-handler/HEAD/handler_test.go --------------------------------------------------------------------------------