Skip to content

Instantly share code, notes, and snippets.

@m0mus
Last active September 9, 2018 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m0mus/90235aace2857bea95b0b44e386e920b to your computer and use it in GitHub Desktop.
Save m0mus/90235aace2857bea95b0b44e386e920b to your computer and use it in GitHub Desktop.
Helidon Takes Flight #1
Routing routing = Routing.builder()
.get("/hello", (req, res) -> res.send("Hello World"))
.build();
WebServer.create(routing)
.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment