mirror of
https://github.com/tappollo/WWDC.git
synced 2026-01-12 22:45:32 +08:00
15 lines
233 B
Swift
15 lines
233 B
Swift
//
|
|
// Result.swift
|
|
// WWDC
|
|
//
|
|
// Created by Guilherme Rambo on 07/02/17.
|
|
// Copyright © 2017 Guilherme Rambo. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum Result<T, E: Error> {
|
|
case success(T)
|
|
case error(E)
|
|
}
|