Update docs

This commit is contained in:
Rene Arumetsa
2026-08-19 19:53:04 +03:00
parent 0ea5580e15
commit 191726721c
3 changed files with 40 additions and 32 deletions

View File

@@ -483,7 +483,15 @@ Every slash command invocation is logged with the user ID, display name, and all
```
├── bot.py # Discord client, event handlers, shared helpers; wires command modules together
├── strings.py # All user-facing strings (command descriptions, help text, errors)
├── strings/ # All user-facing strings, split by domain; re-exported so `import strings` works unchanged
│ ├── __init__.py # Re-exports every name from the submodules
│ ├── common.py # System messages, embed TITLEs, ERR, CD_MSG, status/send/patchnotes/reminders
│ ├── commands.py # CMD + OPT descriptions, HELP_CATEGORIES, HELP_UI
│ ├── member.py # /check, member/birthday/channel/economy-setup UI
│ ├── economy.py # Income flavour + income/profile/shop/quests/leaderboard/request UI
│ ├── admin.py # Admin responses, season reset, prestige
│ ├── games.py # Slots, roulette, RPS, blackjack, heist, jailbreak
│ └── fishing.py # Fish catalogue, rarities, /fish UI
├── config.py # Environment variable loader
├── core/
│ ├── economy/ # TipiCOIN business logic (re-exported via core/economy/__init__.py)