Skip to content

Instantly share code, notes, and snippets.

View aokiplayer's full-sized avatar

Hiroyuki Aoki aokiplayer

View GitHub Profile
@stinger
stinger / CombineFetcher.swift
Last active January 28, 2023 18:07
Combine - fetching data using URLSession publishers
import Foundation
import Combine
enum APIError: Error, LocalizedError {
case unknown, apiError(reason: String)
var errorDescription: String? {
switch self {
case .unknown:
return "Unknown error"