├── .gitignore ├── LICENSE ├── README.md ├── app.ts ├── commands.ts ├── handoff.ts ├── package.json ├── provider.ts ├── public ├── connectToBot.js └── index.html └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/README.md -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/app.ts -------------------------------------------------------------------------------- /commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/commands.ts -------------------------------------------------------------------------------- /handoff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/handoff.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/package.json -------------------------------------------------------------------------------- /provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/provider.ts -------------------------------------------------------------------------------- /public/connectToBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/public/connectToBot.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/public/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palindromed/Bot-HandOff/HEAD/tsconfig.json --------------------------------------------------------------------------------