├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── config.py ├── plugins ├── __main__.py ├── caption.py └── functions.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/config.py -------------------------------------------------------------------------------- /plugins/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/plugins/__main__.py -------------------------------------------------------------------------------- /plugins/caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/plugins/caption.py -------------------------------------------------------------------------------- /plugins/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/plugins/functions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artis7eer/ForwardTagRemoverBot/HEAD/requirements.txt --------------------------------------------------------------------------------