feat: Add "My Vibe" button to menu and enhance interactions.

This commit is contained in:
Lemon4ksan
2025-01-27 23:32:08 +03:00
parent c49ff949cf
commit c353de429f
8 changed files with 332 additions and 153 deletions

View File

@@ -24,6 +24,7 @@ class Guild(TypedDict, total=False):
repeat: bool
votes: dict[str, MessageVotes]
vibing: bool
current_viber_id: int | None
class ExplicitGuild(TypedDict):
_id: int
@@ -42,4 +43,5 @@ class ExplicitGuild(TypedDict):
shuffle: bool
repeat: bool
votes: dict[str, MessageVotes]
vibing: bool
vibing: bool
current_viber_id: int | None