Initial commit

This commit is contained in:
Lemon4ksan
2025-01-08 21:55:34 +03:00
commit 7df90b48df
14 changed files with 989 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from typing import TypedDict
class Guild(TypedDict):
allow_explicit: bool
allow_menu: bool
class ExplicitGuild(TypedDict):
_id: str
allow_explicit: bool
allow_menu: bool