chore: initial commit

This commit is contained in:
2024-12-30 03:01:21 -05:00
commit 47955cdfd5
15 changed files with 1322 additions and 0 deletions

8
state.py Normal file
View File

@@ -0,0 +1,8 @@
import disnake
playback_queue = {}
reloaded_modules = set()
intents = disnake.Intents.default()
intents.message_content = True
client = disnake.Client(intents=intents)