├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── functions ├── create │ └── main.go └── delete │ └── main.go ├── package.json ├── serverless.yml └── users └── users.go /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | vendor -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/README.md -------------------------------------------------------------------------------- /functions/create/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/functions/create/main.go -------------------------------------------------------------------------------- /functions/delete/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/functions/delete/main.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/package.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/serverless.yml -------------------------------------------------------------------------------- /users/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthenw/serverless-golang-template/HEAD/users/users.go --------------------------------------------------------------------------------