├── LICENSE ├── Procfile ├── README.md ├── main.py ├── requirements.txt └── telegraminfo.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/info-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/info-bot/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/info-bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram 2 | tgcrypto 3 | -------------------------------------------------------------------------------- /telegraminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayasnoushad/info-bot/HEAD/telegraminfo.py --------------------------------------------------------------------------------