Add test resource
This commit is contained in:
parent
d98231184a
commit
d4c6c4165b
@ -0,0 +1,13 @@
|
||||
package de.w665.fluidcms.rest.mapping;
|
||||
|
||||
import jakarta.ws.rs.GET;
|
||||
import jakarta.ws.rs.Path;
|
||||
import org.jboss.resteasy.reactive.RestResponse;
|
||||
|
||||
@Path("/test")
|
||||
public class TestResource {
|
||||
@GET
|
||||
public RestResponse<String> test() {
|
||||
return RestResponse.ResponseBuilder.ok("Test").build();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user