├── .gitignore ├── README.md ├── handler.js ├── package.json ├── serverless.yml └── test ├── delete_sample.json ├── form_sample.json ├── get_sample.json ├── post_sample.json └── put_sample.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/README.md -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/handler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/package.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/serverless.yml -------------------------------------------------------------------------------- /test/delete_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/test/delete_sample.json -------------------------------------------------------------------------------- /test/form_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/test/form_sample.json -------------------------------------------------------------------------------- /test/get_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/test/get_sample.json -------------------------------------------------------------------------------- /test/post_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/test/post_sample.json -------------------------------------------------------------------------------- /test/put_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/serverless-api-sample/HEAD/test/put_sample.json --------------------------------------------------------------------------------