mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-05-10 04:57:22 +00:00
10 lines
162 B
Swift
10 lines
162 B
Swift
import Foundation
|
|
import Combine
|
|
|
|
public protocol SecretStore: ObservableObject {
|
|
|
|
associatedtype SecretType: Secret
|
|
var secrets: [SecretType] { get }
|
|
|
|
}
|