mirror of
https://github.com/metabolist/metatext.git
synced 2025-01-07 04:25:24 +00:00
10 lines
201 B
Swift
10 lines
201 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public enum HTTPMethod: String {
|
|
case delete = "DELETE"
|
|
case get = "GET"
|
|
case post = "POST"
|
|
case put = "PUT"
|
|
}
|