mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
9 lines
108 B
Swift
9 lines
108 B
Swift
import Foundation
|
|
|
|
enum Platform: String, Decodable {
|
|
case android
|
|
case ios
|
|
case web
|
|
case flutter
|
|
}
|