mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 21:10:24 +00:00
11 lines
272 B
Swift
11 lines
272 B
Swift
//
|
|
// NetworkSession.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 1/5/19.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
@objc public protocol NetworkSession {
|
|
@objc func loadData(from url: URL, completionHandler: @escaping (Data?, Error?) -> Void)
|
|
}
|