5 lines
66 B
Swift
5 lines
66 B
Swift
|
enum HTTPMethod: String {
|
||
|
case get = "GET"
|
||
|
case post = "POST"
|
||
|
}
|