├── .gitignore ├── README.md ├── assets ├── coin.png └── fonts │ └── JetBrainsMono.ttf ├── backup_index └── index.html ├── bot.py ├── configs ├── config_app.json ├── config_boosts.json └── config_reader.py ├── data ├── __init__.py └── database.py ├── handlers ├── __init__.py └── get_user.py ├── main.py ├── requirements.txt └── views ├── __init__.py ├── boobs.py ├── boost.py └── leaderboard.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/README.md -------------------------------------------------------------------------------- /assets/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/assets/coin.png -------------------------------------------------------------------------------- /assets/fonts/JetBrainsMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/assets/fonts/JetBrainsMono.ttf -------------------------------------------------------------------------------- /backup_index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/backup_index/index.html -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/bot.py -------------------------------------------------------------------------------- /configs/config_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/configs/config_app.json -------------------------------------------------------------------------------- /configs/config_boosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/configs/config_boosts.json -------------------------------------------------------------------------------- /configs/config_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/configs/config_reader.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/data/database.py -------------------------------------------------------------------------------- /handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handlers/get_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/handlers/get_user.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/requirements.txt -------------------------------------------------------------------------------- /views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/views/__init__.py -------------------------------------------------------------------------------- /views/boobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/views/boobs.py -------------------------------------------------------------------------------- /views/boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/views/boost.py -------------------------------------------------------------------------------- /views/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luc143r/clicker_webapp_telegram/HEAD/views/leaderboard.py --------------------------------------------------------------------------------