LocalData/Package.swift
Matt Bruce b2616b8caa Add LocalData.swift, Models, Protocols (+1 more) and tests, docs, config
Summary:
- Sources: add LocalData.swift, Models, Protocols (+1 more)
- Tests: add tests for LocalDataTests.swift
- Docs: add docs for Proposal, README
- Config: add Package
- Other: add .gitignore

Stats:
- 19 files changed, 814 insertions(+)
2026-01-18 13:43:07 -06:00

28 lines
573 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: "LocalData",
platforms: [
.iOS(.v17),
.watchOS(.v10)
],
products: [
.library(
name: "LocalData",
targets: ["LocalData"]
),
],
targets: [
.target(
name: "LocalData"
),
.testTarget(
name: "LocalDataTests",
dependencies: ["LocalData"]
),
]
)