gitextract_t9fz8z6y/ ├── .dockerignore ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── README.ru.md ├── bot/ │ ├── __init__.py │ ├── __main__.py │ ├── config_reader.py │ ├── dice_check.py │ ├── filters/ │ │ ├── __init__.py │ │ └── spin_text_filter.py │ ├── fluent_loader.py │ ├── handlers/ │ │ ├── __init__.py │ │ ├── default_commands.py │ │ └── spin.py │ ├── keyboards.py │ ├── locale/ │ │ ├── current/ │ │ │ └── README.md │ │ └── example/ │ │ ├── README.md │ │ ├── README.ru.md │ │ ├── en/ │ │ │ └── strings.ftl │ │ └── ru/ │ │ └── strings.ftl │ ├── logs.py │ ├── middlewares/ │ │ ├── __init__.py │ │ └── throttling.py │ └── ui_commands.py ├── casino-bot.example.service ├── docker-compose.example.yml ├── pyproject.toml ├── redis.example.conf └── settings.example.toml