blob: a8fc39553cfedc0c0e431890c294b43b6b1acf88 [file] [log] [blame]
package eu.mulk.demos;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/hello-resteasy-reactive")
public class ReactiveGreetingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "Hello";
}
}