Added missing Platform
This commit is contained in:
parent
7d39f94271
commit
b738ddaefa
|
@ -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()
|
Loading…
Reference in New Issue