mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
15 lines
336 B
Swift
15 lines
336 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Intelligents",
|
|
products: [
|
|
.library(name: "Intelligents", targets: ["Intelligents"]),
|
|
],
|
|
targets: [
|
|
.target(name: "Intelligents"),
|
|
]
|
|
)
|