Files
secretive/SecretKit/SecretStore.swift
Max Goedjen de2082f70e Structure
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 }
}