mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
14 lines
253 B
Swift
14 lines
253 B
Swift
//
|
|
// NetworkSession.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 1/5/19.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import PromiseKit
|
|
|
|
protocol NetworkSession {
|
|
func loadData(from url: URL) -> Promise<Data>
|
|
}
|