├── .gitignore ├── Readme.md ├── aws └── shim.go ├── eawsy └── shim.go ├── examples └── helloWorld │ ├── Readme.md │ ├── aws │ ├── Makefile │ └── handler.go │ ├── eawsy │ ├── Makefile │ └── handler.go │ ├── hello │ └── hello.go │ ├── main.go │ └── swagger.json ├── go.mod ├── go.sum └── utils └── adapters.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/Readme.md -------------------------------------------------------------------------------- /aws/shim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/aws/shim.go -------------------------------------------------------------------------------- /eawsy/shim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/eawsy/shim.go -------------------------------------------------------------------------------- /examples/helloWorld/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/Readme.md -------------------------------------------------------------------------------- /examples/helloWorld/aws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/aws/Makefile -------------------------------------------------------------------------------- /examples/helloWorld/aws/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/aws/handler.go -------------------------------------------------------------------------------- /examples/helloWorld/eawsy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/eawsy/Makefile -------------------------------------------------------------------------------- /examples/helloWorld/eawsy/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/eawsy/handler.go -------------------------------------------------------------------------------- /examples/helloWorld/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/hello/hello.go -------------------------------------------------------------------------------- /examples/helloWorld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/main.go -------------------------------------------------------------------------------- /examples/helloWorld/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/examples/helloWorld/swagger.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/go.sum -------------------------------------------------------------------------------- /utils/adapters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danapsimer/aws-api-to-lambda-shim/HEAD/utils/adapters.go --------------------------------------------------------------------------------