├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── config.py ├── main.py ├── plugins ├── commands.py ├── running.py └── stoping.py ├── requirements.txt ├── runtime.txt ├── translation.py └── user.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/main.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/running.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/plugins/running.py -------------------------------------------------------------------------------- /plugins/stoping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/plugins/stoping.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | TgCrypto 2 | Pyrogram 3 | Dnspython 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.4 2 | -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/translation.py -------------------------------------------------------------------------------- /user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh-Jil/Forwardit/HEAD/user.py --------------------------------------------------------------------------------