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