blob: ba31220a462dada53ac3acdcee90dc3b550283c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// ResultOperation+Output.swift
// Operations
//
// 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
}
}
|