Files
WWDC/ConfCore/Result.swift
Guilherme Rambo 17f01dbc45 WIP: storage
2017-03-17 01:19:05 -03:00

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)
}