Skip to content

Instantly share code, notes, and snippets.

@k33g
Created May 3, 2018 05:47
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 k33g/b0c5315dd40b36a45f4389cd31ff0fa6 to your computer and use it in GitHub Desktop.
Save k33g/b0c5315dd40b36a45f4389cd31ff0fa6 to your computer and use it in GitHub Desktop.
Redpipe 1er contact
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@Path("/")
public class HelloResource {
@GET
public String hello() {
return "Hello World";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment