├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── event.go ├── event_test.go ├── glide.lock ├── glide.yaml ├── lambda.go ├── lambda_test.go ├── main.go ├── presenter.go ├── presenter_test.go ├── sample.yml ├── sender.go ├── structs.go ├── util.go └── util_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | vendor/ 3 | maekawa 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/README.md -------------------------------------------------------------------------------- /event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/event.go -------------------------------------------------------------------------------- /event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/event_test.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/glide.yaml -------------------------------------------------------------------------------- /lambda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/lambda.go -------------------------------------------------------------------------------- /lambda_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/lambda_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/main.go -------------------------------------------------------------------------------- /presenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/presenter.go -------------------------------------------------------------------------------- /presenter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/presenter_test.go -------------------------------------------------------------------------------- /sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/sample.yml -------------------------------------------------------------------------------- /sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/sender.go -------------------------------------------------------------------------------- /structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/structs.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unasuke/maekawa/HEAD/util_test.go --------------------------------------------------------------------------------