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(+)
9 lines
311 B
Swift
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
|
|
}
|