summaryrefslogtreecommitdiffhomepage
path: root/ios/Operations/ResultOperation+Output.swift
blob: 56b13a0524d27abd40a14e2a4167ea5c38fbe404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
//  ResultOperation+Output.swift
//  MullvadVPN
//
//  Created by pronebird on 31/05/2022.
//  Copyright © 2022 Mullvad VPN AB. All rights reserved.
//

import Foundation

extension ResultOperation: OutputOperation {
    public var output: Success? {
        return completion?.value
    }
}