Summary: - Sources: Migrations, Models, Protocols, Services, Utilities - Tests: AnyStorageKeyTests.swift, MigrationAdditionalTests.swift, MigrationIntegrationTests.swift, MigrationProtocolTests.swift, MigrationTests.swift (+1 more) - Docs: Migration, Migration_Refactor_Plan_Clean, Proposal, README - Added symbols: struct MyMigration, typealias DestinationKey, func shouldMigrate, func migrate, extension MyNewKey, protocol StorageMigration (+74 more) - Removed symbols: enum StorageDomain, func migrate, func validatePlatformAvailability, func deserialize, func applySecurity, func retrieve (+1 more) Stats: - 31 files changed, 2820 insertions(+), 80 deletions(-)
8 lines
155 B
Swift
8 lines
155 B
Swift
import Foundation
|
|
|
|
public enum Platform: String, CaseIterable, Sendable {
|
|
case iOS = "iOS"
|
|
case watchOS = "watchOS"
|
|
case unknown = "unknown"
|
|
}
|