mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
18 lines
443 B
Swift
18 lines
443 B
Swift
//
|
|
// URLSession+NetworkSession.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 1/5/19.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension URLSession: NetworkSession {
|
|
open func loadData(from url: URL, completionHandler: @escaping (Data?, Error?) -> Void) {
|
|
let task = dataTask(with: url) { data, _, error in
|
|
completionHandler(data, error)
|
|
}
|
|
task.resume()
|
|
}
|
|
}
|