mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-22 20:41:50 +08:00
feat(ios): implement chat function (#9482)
Co-authored-by: DarkSky <darksky2048@gmail.com>
This commit is contained in:
@@ -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"
|
||||
),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user