Skip to content

Instantly share code, notes, and snippets.

View faris-mobile89's full-sized avatar
:shipit:
Focusing

Faris Abu Saleem faris-mobile89

:shipit:
Focusing
View GitHub Profile
@faris-mobile89
faris-mobile89 / Loadable.swift
Created July 24, 2020 01:14 — forked from nalexn/Loadable.swift
A container for a resource requested from the backend
// Copyright © 2019 Alexey Naumov. MIT License
import Foundation
enum Loadable<Value> {
case notRequested
case isLoading(prevValue: Value?)
case loaded(Value)
case failed(Error)
}