Added missing Platform

This commit is contained in:
dankito 2024-08-27 03:03:11 +02:00
parent 7d39f94271
commit b738ddaefa
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package net.codinux.banking.ui
class JsPlatform: Platform {
override val name: String = "Web with Kotlin/Js"
override val type: PlatformType = PlatformType.Web
}
actual fun getPlatform(): Platform = JsPlatform()