├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── genStr.py ├── logger.py ├── requirements.txt └── runtime.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3.8 genStr.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/bot.py -------------------------------------------------------------------------------- /genStr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/genStr.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/logger.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/TG-String-Session/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 2 | --------------------------------------------------------------------------------