mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 21:47:08 +00:00
15 lines
208 B
Swift
15 lines
208 B
Swift
import Foundation
|
|
import Combine
|
|
|
|
extension SmartCard {
|
|
|
|
public struct Secret: SecretKit.Secret {
|
|
|
|
public let id: Data
|
|
public let name: String
|
|
public let publicKey: Data
|
|
|
|
}
|
|
|
|
}
|