mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-01-01 06:18:50 +01:00
12 lines
214 B
Swift
12 lines
214 B
Swift
import Foundation
|
|
import SecretKit
|
|
|
|
public struct TestSecret: SecretKit.Secret {
|
|
|
|
public let id: Data
|
|
public let name: String
|
|
public let publicKey: Data
|
|
public var attributes: Attributes
|
|
|
|
}
|