├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── helper ├── database.py ├── errors.py ├── keyboard.py └── text.py ├── heroku.yml ├── image ├── edit_1.py ├── edit_2.py ├── edit_3.py ├── edit_4.py └── edit_5.py ├── loader.py ├── plugins ├── F_Sub.py ├── broadcast.py ├── callback.py ├── carbon ├── channelid.py ├── font_btn.py ├── fun.py ├── image.py ├── logo.py ├── main.py ├── paste.py ├── sticker.py ├── string_gen ├── telegraph.py ├── tts.py └── yt_dl.py ├── requirements.txt ├── route.py ├── runtime.txt ├── start.sh ├── utils ├── files.py ├── fonts.py ├── functions.py ├── http.py ├── pastebin.py └── stickerset.py └── variables.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash start.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/app.json -------------------------------------------------------------------------------- /helper/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/helper/database.py -------------------------------------------------------------------------------- /helper/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/helper/errors.py -------------------------------------------------------------------------------- /helper/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/helper/keyboard.py -------------------------------------------------------------------------------- /helper/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/helper/text.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/heroku.yml -------------------------------------------------------------------------------- /image/edit_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/image/edit_1.py -------------------------------------------------------------------------------- /image/edit_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/image/edit_2.py -------------------------------------------------------------------------------- /image/edit_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/image/edit_3.py -------------------------------------------------------------------------------- /image/edit_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/image/edit_4.py -------------------------------------------------------------------------------- /image/edit_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/image/edit_5.py -------------------------------------------------------------------------------- /loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/loader.py -------------------------------------------------------------------------------- /plugins/F_Sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/F_Sub.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/callback.py -------------------------------------------------------------------------------- /plugins/carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/carbon -------------------------------------------------------------------------------- /plugins/channelid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/channelid.py -------------------------------------------------------------------------------- /plugins/font_btn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/font_btn.py -------------------------------------------------------------------------------- /plugins/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/fun.py -------------------------------------------------------------------------------- /plugins/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/image.py -------------------------------------------------------------------------------- /plugins/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/logo.py -------------------------------------------------------------------------------- /plugins/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/main.py -------------------------------------------------------------------------------- /plugins/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/paste.py -------------------------------------------------------------------------------- /plugins/sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/sticker.py -------------------------------------------------------------------------------- /plugins/string_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/string_gen -------------------------------------------------------------------------------- /plugins/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/telegraph.py -------------------------------------------------------------------------------- /plugins/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/tts.py -------------------------------------------------------------------------------- /plugins/yt_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/plugins/yt_dl.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/route.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.6 2 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/start.sh -------------------------------------------------------------------------------- /utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/utils/files.py -------------------------------------------------------------------------------- /utils/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/utils/fonts.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/utils/http.py -------------------------------------------------------------------------------- /utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/utils/pastebin.py -------------------------------------------------------------------------------- /utils/stickerset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/utils/stickerset.py -------------------------------------------------------------------------------- /variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-JEOL/TG-MULTI-BOT/HEAD/variables.py --------------------------------------------------------------------------------