Skip to content

Commit

Permalink
1.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dankinsoid committed Jun 22, 2024
1 parent 65c9b6a commit 71a3814
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ public protocol SecureCacheService {
}

/// A key for a secure cache service.
public struct SecureCacheServiceKey: Hashable, ExpressibleByStringInterpolation {
public struct SecureCacheServiceKey: Hashable, ExpressibleByStringInterpolation, LosslessStringConvertible {

public var value: String
public var description: String { value }

public init(_ value: String) {
self.value = value
Expand Down

0 comments on commit 71a3814

Please sign in to comment.