mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
24 lines
570 B
Swift
24 lines
570 B
Swift
import Foundation
|
|
|
|
public enum Framework: String, Codable, CustomStringConvertible {
|
|
case analog = "analog"
|
|
case angular = "angular"
|
|
case nextjs = "nextjs"
|
|
case react = "react"
|
|
case nuxt = "nuxt"
|
|
case vue = "vue"
|
|
case sveltekit = "sveltekit"
|
|
case astro = "astro"
|
|
case tanstackStart = "tanstack-start"
|
|
case remix = "remix"
|
|
case lynx = "lynx"
|
|
case flutter = "flutter"
|
|
case reactNative = "react-native"
|
|
case vite = "vite"
|
|
case other = "other"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|