diff --git a/TIKeychainUtils/Sources/KeychainAccess/Keychain+CodableKeyValueStorage.swift b/TIKeychainUtils/Sources/KeychainAccess/Keychain+CodableKeyValueStorage.swift index 3f37d39b..c1949b2d 100644 --- a/TIKeychainUtils/Sources/KeychainAccess/Keychain+CodableKeyValueStorage.swift +++ b/TIKeychainUtils/Sources/KeychainAccess/Keychain+CodableKeyValueStorage.swift @@ -24,6 +24,8 @@ import Foundation import KeychainAccess import TIFoundationUtils +typealias KeychainCodableBackingStore = CodableKeyValueBackingStore + extension Keychain: CodableKeyValueStorage { public func codableObject(forKey key: StorageKey, decoder: CodableKeyValueDecoder) throws -> Value { diff --git a/TIKeychainUtils/Sources/KeychainAccess/KeychainCodableBackingStore.swift b/TIKeychainUtils/Sources/KeychainAccess/KeychainCodableBackingStore.swift deleted file mode 100644 index 2be86a80..00000000 --- a/TIKeychainUtils/Sources/KeychainAccess/KeychainCodableBackingStore.swift +++ /dev/null @@ -1,4 +0,0 @@ -import KeychainAccess -import TIFoundationUtils - -typealias KeychainCodableBackingStore = CodableKeyValueBackingStore