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

import Foundation

public protocol OutputOperation: Operation {
    associatedtype Output: Sendable

    var output: Output? { get }
}