├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt └── src ├── bot.py ├── config.py ├── db.py └── ton.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiogram==2.21 2 | requests 3 | -------------------------------------------------------------------------------- /src/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/src/bot.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/src/config.py -------------------------------------------------------------------------------- /src/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/src/db.py -------------------------------------------------------------------------------- /src/ton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusarich/ton-bot-example/HEAD/src/ton.py --------------------------------------------------------------------------------