mirror of
https://github.com/appwrite/sdk-for-apple.git
synced 2026-04-07 19:17:50 +00:00
16 lines
321 B
Swift
16 lines
321 B
Swift
import Foundation
|
|
|
|
public enum ExecutionMethod: String, CustomStringConvertible {
|
|
case gET = "GET"
|
|
case pOST = "POST"
|
|
case pUT = "PUT"
|
|
case pATCH = "PATCH"
|
|
case dELETE = "DELETE"
|
|
case oPTIONS = "OPTIONS"
|
|
case hEAD = "HEAD"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|