├── .gitignore ├── Procfile ├── README.md ├── app.json ├── bot.py ├── init.py ├── main.py ├── plugins ├── chat_config.py ├── clone.py └── stop_clone.py ├── presets.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── user.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/bot.py -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/init.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from bot import Bot 2 | 3 | Bot().run() 4 | -------------------------------------------------------------------------------- /plugins/chat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/plugins/chat_config.py -------------------------------------------------------------------------------- /plugins/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/plugins/clone.py -------------------------------------------------------------------------------- /plugins/stop_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/plugins/stop_clone.py -------------------------------------------------------------------------------- /presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/presets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram==1.1.9 2 | tgcrypto 3 | pytz 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.7 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/sample_config.py -------------------------------------------------------------------------------- /user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/clonebot-cmd/HEAD/user.py --------------------------------------------------------------------------------