blob: 350490f707c12d6b80e7c58ad667c93818b0b3ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// RESTTransport.swift
// MullvadREST
//
// Created by Sajad Vishkai on 2022-10-03.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
import MullvadTypes
public protocol RESTTransport: Sendable {
var name: String { get }
func sendRequest(_ request: URLRequest, completion: @escaping @Sendable (Data?, URLResponse?, Error?) -> Void)
-> Cancellable
}
|