Files
SwiftUI/Other Projects/GitHub Search/GitHubSearchWithSwiftUI/Model/ErrorResponse.swift
John Holdsworth 8018d0c2a0 Combine examples
2019-07-10 00:57:54 +01:00

14 lines
254 B
Swift

//
// ErrorResponse.swift
// GitHubSearchWithSwiftUI
//
// Created by John Holdsworth on 09/07/2019.
// Copyright © 2019 jp.marty-suzuki. All rights reserved.
//
import Foundation
struct ErrorResponse: Decodable, Error {
let message: String
}