Module io.avaje.jex

Package io.avaje.jex


package io.avaje.jex
Avaje Jex API - see Jex.

 final Jex.Server app = Jex.create()
   .routing(routing -> routing
     .get("/", ctx -> ctx.text("hello world"))
     .get("/one", ctx -> ctx.text("one"))
   .port(8080)
   .start();

 app.shutdown();