├── .env.example ├── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── bot.py ├── heroku.yml ├── images ├── 1.jpg ├── 2.jpg └── on.png ├── jokes.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .vscode 3 | test.py 4 | env/ 5 | __pycache__/ 6 | *.png 7 | users.json 8 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/images/on.png -------------------------------------------------------------------------------- /jokes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/jokes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujadmani/Easy-Telegram-Airdrop-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------