Skip to content

Instantly share code, notes, and snippets.

@finalpets
finalpets / APICliente.swift
Last active August 8, 2020 07:40
Example Using Combine
import Foundation
import os.log
import Combine
class APIRequest {
let method: HTTPMethod
let path: String
var queryItems: [URLQueryItem]?
var headers: [HTTPHeader]?
var body: Data?