mirror of
https://github.com/jphong1111/awesome-ios-developer.git
synced 2025-01-03 13:31:09 +07:00
15 lines
305 B
Swift
15 lines
305 B
Swift
//
|
|
// NetworkRouter.swift
|
|
// MapDemoApp
|
|
//
|
|
// Created by JungpyoHong on 4/25/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol NetworkRouter: AnyObject {
|
|
associatedtype EndPoint: EndPointType
|
|
func request<T: Decodable>(_ route: EndPoint, completion: @escaping NetworkRouterCompletion<T>)
|
|
func cancel()
|
|
}
|