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

import Foundation

public protocol OutputOperation: Operation {
    associatedtype Output: Sendable

    var output: Output? { get }
}