From 6c7a82117994d1f0240d2f2faaca653657e53a39 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sat, 18 Feb 2023 17:22:52 -0800 Subject: [PATCH] Fix missing combine imports --- Sources/Packages/Sources/Brief/UpdaterProtocol.swift | 1 + .../Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift | 1 + Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift | 1 + 3 files changed, 3 insertions(+) diff --git a/Sources/Packages/Sources/Brief/UpdaterProtocol.swift b/Sources/Packages/Sources/Brief/UpdaterProtocol.swift index 1930a0f..a5c5edc 100644 --- a/Sources/Packages/Sources/Brief/UpdaterProtocol.swift +++ b/Sources/Packages/Sources/Brief/UpdaterProtocol.swift @@ -1,4 +1,5 @@ import Foundation +import Combine /// A protocol for retreiving the latest available version of an app. public protocol UpdaterProtocol: ObservableObject { diff --git a/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift b/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift index 13e15e2..b43b2f9 100644 --- a/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift +++ b/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift @@ -1,4 +1,5 @@ import Foundation +import Combine import Security import CryptoTokenKit import LocalAuthentication diff --git a/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift b/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift index ef7c23e..cfbba52 100644 --- a/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift +++ b/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift @@ -1,4 +1,5 @@ import Foundation +import Combine import Security import CryptoTokenKit import LocalAuthentication