Initial commit.

This commit is contained in:
aminecmi
2022-09-30 12:21:11 +02:00
parent d6c9217f38
commit 0e1d0ca588
16 changed files with 461 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import io.javalin.Javalin
fun main() {
val app = Javalin.create().start(7070)
app.get("/") { ctx -> ctx.result("Hello World") }
}