ServerError: Fix

This commit is contained in:
Thomas Ricouard 2023-03-13 13:42:32 +01:00
parent 6c307aba63
commit aa120a48f7

View file

@ -2,7 +2,7 @@ import Foundation
public struct ServerError: Decodable, Error { public struct ServerError: Decodable, Error {
public let error: String? public let error: String?
public var httpCode: Int public var httpCode: Int?
} }
extension ServerError: Sendable {} extension ServerError: Sendable {}