secretive/SecretKit/SecretStore.swift

10 lines
162 B
Swift
Raw Normal View History

2020-02-19 04:52:00 +00:00
import Foundation
import Combine
public protocol SecretStore: ObservableObject {
associatedtype SecretType: Secret
var secrets: [SecretType] { get }
}