This commit is contained in:
Andrew Glaze
2025-08-19 22:57:10 -04:00
commit a5247d6f5d
4 changed files with 364 additions and 0 deletions

23
Package.swift Normal file
View File

@@ -0,0 +1,23 @@
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "nahi",
dependencies: [
.package(url: "https://github.com/DiscordBM/DiscordBM.git", from: "1.13.2"),
.package(url: "https://github.com/guitaripod/GeminiKit", from: "1.0.0")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.executableTarget(
name: "nahi",
dependencies: [
.product(name: "DiscordBM", package: "DiscordBM"),
.product(name: "GeminiKit", package: "GeminiKit")
]
),
]
)