SecureStorageSample/SecureStorageSample Watch App/Protocols/WatchDataHandling.swift

7 lines
106 B
Swift

import Foundation
protocol WatchDataHandling {
var key: String { get }
func handle(data: Data)
}