Make name immutable

This commit is contained in:
Max Goedjen 2020-03-08 21:18:13 -07:00
parent 6c012e9d24
commit 5e76dd4024
No known key found for this signature in database
GPG Key ID: E58C21DD77B9B8E8
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ extension SmartCard {
public struct Secret: SecretKit.Secret {
public let id: Data
public var name: String
public let name: String
public let publicKey: Data
}