feat(ios): implement chat function (#9482)

Co-authored-by: DarkSky <darksky2048@gmail.com>
This commit is contained in:
Lakr
2025-01-02 17:35:07 +08:00
committed by GitHub
parent 72e343c379
commit 094cb1d71c
220 changed files with 7695 additions and 164 deletions
@@ -0,0 +1,28 @@
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "AffineGraphQL",
platforms: [
.iOS(.v12),
.macOS(.v10_14),
.tvOS(.v12),
.watchOS(.v5),
],
products: [
.library(name: "AffineGraphQL", targets: ["AffineGraphQL"]),
],
dependencies: [
.package(url: "https://github.com/apollographql/apollo-ios.git", from: "1.0.0"),
],
targets: [
.target(
name: "AffineGraphQL",
dependencies: [
.product(name: "ApolloAPI", package: "apollo-ios"),
],
path: "./Sources"
),
]
)