This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final class NetworkManager { | |
let baseURL: String | |
private var session = URLSession(configuration: URLSessionConfiguration.default, | |
delegate: nil, | |
delegateQueue: nil) | |
private let queue = DispatchQueue(label: "com.organization.network-manager", attributes: .concurrent) |
NewerOlder