16 lines
300 B
Swift
16 lines
300 B
Swift
|
//
|
||
|
// RequestMethod.swift
|
||
|
// APIService
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 03/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
enum RequestMethod: String {
|
||
|
case delete = "DELETE"
|
||
|
case get = "GET"
|
||
|
case patch = "PATCH"
|
||
|
case post = "POST"
|
||
|
case put = "PUT"
|
||
|
}
|