Files
Outpost/OutlineKit/Package.swift
T
Puranjay Savar Mattas 07fb08cb6b feat(outlinekit): add REST client package for Outline API
Local SPM package wrapping Outline's RPC-style REST API — auth,
documents, collections, and search — behind a protocol boundary
(OutlineAPIClient) so the app never depends on the transport directly.
2026-08-14 00:23:12 +01:00

23 lines
442 B
Swift

// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "OutlineKit",
platforms: [
.iOS(.v17),
.macOS(.v14)
],
products: [
.library(name: "OutlineKit", targets: ["OutlineKit"])
],
targets: [
.target(
name: "OutlineKit"
),
.testTarget(
name: "OutlineKitTests",
dependencies: ["OutlineKit"]
)
]
)