mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-05-10 04:57:22 +00:00
6 lines
97 B
Swift
6 lines
97 B
Swift
import Foundation
|
|
|
|
public protocol Secret: Identifiable, Hashable {
|
|
var id: String { get }
|
|
}
|