LocalData/Sources/LocalData/Models/PlatformAvailability.swift
Matt Bruce b9dca68c5d Update LocalData.swift, Models, Protocols (+1 more) + tests + docs + config
Summary:
- Sources: LocalData.swift, Models, Protocols, Services
- Tests: LocalDataTests.swift
- Docs: Proposal, README
- Config: Package
- Other: .gitignore
- Added symbols: enum StorageKeys, struct AnyCodable, func encode, enum FileDirectory, func url, enum KeychainAccessControl (+49 more)

Stats:
- 19 files changed, 814 insertions(+)
2026-01-18 14:53:25 -06:00

9 lines
311 B
Swift

import Foundation
public enum PlatformAvailability: Sendable {
case all // iPhone + Watch (small only!)
case phoneOnly // iPhone only (large/sensitive)
case watchOnly // Watch local only
case phoneWithWatchSync // Small data for explicit sync
}