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