mirror of
https://github.com/jphong1111/awesome-ios-developer.git
synced 2025-01-05 21:12:06 +07:00
16 lines
291 B
Swift
16 lines
291 B
Swift
//
|
|
// ParameterEncoding.swift
|
|
// MapDemoApp
|
|
//
|
|
// Created by JungpyoHong on 4/25/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
typealias Parameters = [String: Any]
|
|
|
|
protocol ParameterEncoder {
|
|
static func encode(urlRequest: inout URLRequest,
|
|
with parameters: Parameters) throws
|
|
}
|