mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-17 02:52:01 +08:00
15 lines
218 B
Swift
15 lines
218 B
Swift
//
|
|
// Result.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 8/27/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum Result<T> {
|
|
case error(Error?)
|
|
case success(T)
|
|
}
|