8 lines
166 B
Kotlin
8 lines
166 B
Kotlin
package dev.meloda.overseerr
|
|
|
|
class JsPlatform : Platform {
|
|
override val name: String = "Web with Kotlin/JS"
|
|
}
|
|
|
|
actual fun getPlatform(): Platform = JsPlatform()
|