├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── HTML ├── README.md └── index.html ├── README.md ├── deno ├── .vscode │ └── settings.json ├── README.md └── main.ts ├── logo.png ├── nim ├── .gitignore ├── README.md ├── nim.cfg ├── src │ └── voiceflow.nim └── voiceflow.nimble ├── nodeJS ├── README.md ├── index.js ├── package-lock.json └── package.json ├── python ├── README.md └── index.py ├── react ├── App.js └── README.md ├── renovate.json └── rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src └── main.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /HTML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/HTML/README.md -------------------------------------------------------------------------------- /HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/HTML/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/README.md -------------------------------------------------------------------------------- /deno/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/deno/.vscode/settings.json -------------------------------------------------------------------------------- /deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/deno/README.md -------------------------------------------------------------------------------- /deno/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/deno/main.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/logo.png -------------------------------------------------------------------------------- /nim/.gitignore: -------------------------------------------------------------------------------- 1 | # compiled binary 2 | voiceflow 3 | -------------------------------------------------------------------------------- /nim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nim/README.md -------------------------------------------------------------------------------- /nim/nim.cfg: -------------------------------------------------------------------------------- 1 | # Enable SSL 2 | -d:ssl 3 | -------------------------------------------------------------------------------- /nim/src/voiceflow.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nim/src/voiceflow.nim -------------------------------------------------------------------------------- /nim/voiceflow.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nim/voiceflow.nimble -------------------------------------------------------------------------------- /nodeJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nodeJS/README.md -------------------------------------------------------------------------------- /nodeJS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nodeJS/index.js -------------------------------------------------------------------------------- /nodeJS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nodeJS/package-lock.json -------------------------------------------------------------------------------- /nodeJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/nodeJS/package.json -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/python/README.md -------------------------------------------------------------------------------- /python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/python/index.py -------------------------------------------------------------------------------- /react/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/react/App.js -------------------------------------------------------------------------------- /react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/react/README.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { "enabled": false } 2 | -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/rust/.gitignore -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/api-examples/HEAD/rust/src/main.rs --------------------------------------------------------------------------------