├── .env.sample ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── License ├── Procfile ├── ReadMe.md ├── app.json ├── bot.py └── requirements.txt /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | BotzHub.session -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/Dockerfile -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/License -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | BotzHub: python bot.py -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/ReadMe.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/ForceSub/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-decouple 2 | telethon --------------------------------------------------------------------------------