├── LICENSE ├── Procfile ├── README.md ├── app.json ├── dev_status_checker.py ├── requirements.txt └── runtime.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devarora-0981/Status-Checker/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 dev_status_checker.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devarora-0981/Status-Checker/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devarora-0981/Status-Checker/HEAD/app.json -------------------------------------------------------------------------------- /dev_status_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devarora-0981/Status-Checker/HEAD/dev_status_checker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram 2 | tgcrypto 3 | pytz==2021.3 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 2 | --------------------------------------------------------------------------------