├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── config_example.py └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/bot.py -------------------------------------------------------------------------------- /config_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/config_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karan/slashgif/HEAD/requirements.txt --------------------------------------------------------------------------------