Add preparing navigation to roadmap

This commit is contained in:
2026-05-07 22:51:01 +02:00
parent 95bbeb57d2
commit f7e866a08d
27 changed files with 402 additions and 3629 deletions

View File

@@ -1,7 +0,0 @@
package dev.ulfrx.recipe
public class JVMPlatform : Platform {
override val name: String = "Java ${System.getProperty("java.version")}"
}
public actual fun getPlatform(): Platform = JVMPlatform()

View File

@@ -1,7 +0,0 @@
package dev.ulfrx.recipe
public class WasmPlatform : Platform {
override val name: String = "Web with Kotlin/Wasm"
}
public actual fun getPlatform(): Platform = WasmPlatform()