summaryrefslogtreecommitdiffhomepage
path: root/ios/Operations/OutputOperation.swift
blob: cf7342ed2992a8a93284e6167a4d7ba65891f5a6 (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 © 2025 Mullvad VPN AB. All rights reserved.
//

import Foundation

public protocol OutputOperation: Operation {
    associatedtype Output: Sendable

    var output: Output? { get }
}