summaryrefslogtreecommitdiffhomepage
path: root/ios/Operations/OutputOperation.swift
blob: 82274b14504456e3eac1d95891e652683e63f949 (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

    var output: Output? { get }
}