secretive/SecretKit/SecretStore.swift
2020-02-18 20:52:00 -08:00

10 lines
162 B
Swift

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