mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
11 lines
194 B
Swift
11 lines
194 B
Swift
import Foundation
|
|
|
|
public enum Adapter: String, CustomStringConvertible {
|
|
case `static` = "static"
|
|
case ssr = "ssr"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|