├── .gitignore ├── README.md ├── f ├── forward │ ├── function.json │ └── index.js └── sendMessage │ ├── function.json │ └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | env.json 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemo/twilio-f/HEAD/README.md -------------------------------------------------------------------------------- /f/forward/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemo/twilio-f/HEAD/f/forward/function.json -------------------------------------------------------------------------------- /f/forward/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemo/twilio-f/HEAD/f/forward/index.js -------------------------------------------------------------------------------- /f/sendMessage/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemo/twilio-f/HEAD/f/sendMessage/function.json -------------------------------------------------------------------------------- /f/sendMessage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemo/twilio-f/HEAD/f/sendMessage/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemo/twilio-f/HEAD/package.json --------------------------------------------------------------------------------