mirror of
https://github.com/mas-cli/mas
synced 2024-11-29 15:00:25 +00:00
aa0d204a07
https://www.swiftbysundell.com/posts/mocking-in-swift https://medium.com/@johnsundell/mocking-in-swift-56a913ee7484
11 lines
253 B
Swift
11 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)
|
|
}
|