├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── examples └── simple-bot.js ├── lib ├── session.d.ts └── session.js ├── package.json ├── readme.md └── test └── session-test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /examples/simple-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/examples/simple-bot.js -------------------------------------------------------------------------------- /lib/session.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/lib/session.d.ts -------------------------------------------------------------------------------- /lib/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/lib/session.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/readme.md -------------------------------------------------------------------------------- /test/session-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegraf/telegraf-session-redis/HEAD/test/session-test.js --------------------------------------------------------------------------------