From a3bfced62ac8f725d0fbd9cdd710ad390207f75c Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sun, 11 Dec 2022 18:55:30 +0100 Subject: [PATCH] Conformed the Keychain class from the KeychainAccess dependency to the Keychainable protocol. --- .../Conformances/Keychain+Keychainable.swift | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Libraries/Sources/KeychainStorage/Conformances/Keychain+Keychainable.swift diff --git a/Libraries/Sources/KeychainStorage/Conformances/Keychain+Keychainable.swift b/Libraries/Sources/KeychainStorage/Conformances/Keychain+Keychainable.swift new file mode 100644 index 0000000..e4bf596 --- /dev/null +++ b/Libraries/Sources/KeychainStorage/Conformances/Keychain+Keychainable.swift @@ -0,0 +1,11 @@ +// +// Keychain+Keychainable.swift +// KeychainStorage +// +// Created by Javier Cicchelli on 11/12/2022. +// Copyright © 2022 Röck+Cöde. All rights reserved. +// + +import KeychainAccess + +extension Keychain: Keychainable {}