secretive/SecretKit/SecretStore.swift

10 lines
162 B
Swift

import Foundation
import Combine
public protocol SecretStore: ObservableObject {
associatedtype SecretType: Secret
var secrets: [SecretType] { get }
}