feat: wolfram alpha

This commit is contained in:
Andrew Glaze
2026-02-28 12:10:37 -05:00
commit 1435890218
7 changed files with 563 additions and 0 deletions

25
Package.swift Normal file
View File

@@ -0,0 +1,25 @@
// 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: "zundamon",
dependencies: [
.package(url: "https://github.com/DiscordBM/DiscordBM.git", from: "1.16.0"),
.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")
],
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: "zundamon",
dependencies: [
.product(name: "DiscordBM", package: "discordbm"),
.product(name: "SwiftDotenv", package: "swift-dotenv"),
.product(name: "XMLCoder", package: "xmlcoder")
],
),
]
)