Skip to content

Instantly share code, notes, and snippets.

View wbbernardes's full-sized avatar

Wesley Brito wbbernardes

  • Brasília - Brazil
View GitHub Profile
@mecid
mecid / Networking.swift
Last active June 19, 2023 16:35
Networking layer in Swift
import Foundation
import Combine
enum HTTPMethod: String {
case put = "PUT"
case post = "POST"
case get = "GET"
case delete = "DELETE"
case head = "HEAD"
}