DiscordKit: can now get to ready event

This commit is contained in:
2026-03-17 16:37:31 -04:00
parent 29a2b0370b
commit 7506a06d7f
6 changed files with 139 additions and 39 deletions

View File

@@ -9,7 +9,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/DiscordBM/DiscordBM.git", branch: "main"),
.package(url: "https://github.com/thebarndog/swift-dotenv.git", from: "2.1.0"),
.package(url: "https://github.com/CoreOffice/XMLCoder.git", from: "0.18.0")
.package(url: "https://github.com/CoreOffice/XMLCoder.git", from: "0.18.0"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
@@ -24,6 +24,8 @@ let package = Package(
),
.target(
name: "DiscordKit",
dependencies: [
],
),
]
)