mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
12 lines
248 B
Swift
12 lines
248 B
Swift
import Foundation
|
|
|
|
public enum ProjectProtocolId: String, Codable, CustomStringConvertible {
|
|
case rest = "rest"
|
|
case graphql = "graphql"
|
|
case websocket = "websocket"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|