mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-08-20 16:19:00 +02: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
|
|
|
|
}
|