metatext/Model/MastodonError.swift
2020-08-26 21:04:06 -07:00

12 lines
226 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
struct MastodonError: Error, Codable {
let error: String
}
extension MastodonError: LocalizedError {
var errorDescription: String? { error }
}