├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── plugins ├── forward.py └── help.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/bot.py -------------------------------------------------------------------------------- /plugins/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/plugins/forward.py -------------------------------------------------------------------------------- /plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/plugins/help.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | TgCrypto 2 | pyrogram==1.4.8 3 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.7 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/multi-channel-forward-bot/HEAD/translation.py --------------------------------------------------------------------------------