mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-03-12 21:35:28 +01:00
14 lines
254 B
Swift
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
|
|
}
|