├── LICENSE (Not Really) ├── Procfile ├── README.md ├── app.json ├── bot.py ├── example.env ├── requirements.txt └── runtime.txt /LICENSE (Not Really): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InukaAsith/TG_OnlineTracker/HEAD/LICENSE (Not Really) -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InukaAsith/TG_OnlineTracker/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InukaAsith/TG_OnlineTracker/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InukaAsith/TG_OnlineTracker/HEAD/bot.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InukaAsith/TG_OnlineTracker/HEAD/example.env -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pyrogram 2 | TgCrypto 3 | python-dotenv 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 2 | --------------------------------------------------------------------------------