├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cf.json ├── index.js ├── main.go └── main_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | lambda.zip 2 | main 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/README.md -------------------------------------------------------------------------------- /cf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/cf.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/index.js -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convox/syslog/HEAD/main_test.go --------------------------------------------------------------------------------