mirror of
https://github.com/jphong1111/awesome-ios-developer.git
synced 2025-01-20 17:35:27 +07:00
17 lines
256 B
Swift
17 lines
256 B
Swift
|
//
|
||
|
// HTTPMethod.swift
|
||
|
// MapDemoApp
|
||
|
//
|
||
|
// Created by JungpyoHong on 4/25/21.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public enum HTTPMethod: String {
|
||
|
case get = "GET"
|
||
|
case post = "POST"
|
||
|
case put = "PUT"
|
||
|
case patch = "PATCH"
|
||
|
case delete = "DELETE"
|
||
|
}
|