DiscordKit feat: impl getGatewayURL

This commit is contained in:
2026-03-12 08:00:07 -04:00
parent cc489fccb6
commit d42227ba55
9 changed files with 135 additions and 27 deletions

24
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"configurations": [
{
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:zunda-bot}",
"name": "Debug zundamon",
"target": "zundamon",
"configuration": "debug",
"preLaunchTask": "swift: Build Debug zundamon"
},
{
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:zunda-bot}",
"name": "Release zundamon",
"target": "zundamon",
"configuration": "release",
"preLaunchTask": "swift: Build Release zundamon"
}
]
}