Package io.avaje.jex


package io.avaje.jex
Avaje Jex API - see Jex.
final Jex.Server app = Jex.create()
  .get("/", ctx -> ctx.text("hello world"))
  .get("/one", ctx -> ctx.text("one"))
  .port(8080)
  .start();

app.shutdown();