IceCubesApp/Packages/Models/Sources/Models/ServerError.swift

8 lines
131 B
Swift
Raw Normal View History

import Foundation
public struct ServerError: Decodable, Error {
public let error: String?
}
extension ServerError: Sendable {}