├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib ├── instant-api.js └── uploader.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentum/lambdaws-instant-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentum/lambdaws-instant-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentum/lambdaws-instant-api/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/instant-api'); 2 | -------------------------------------------------------------------------------- /lib/instant-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentum/lambdaws-instant-api/HEAD/lib/instant-api.js -------------------------------------------------------------------------------- /lib/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentum/lambdaws-instant-api/HEAD/lib/uploader.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentum/lambdaws-instant-api/HEAD/package.json --------------------------------------------------------------------------------