wip: club add map

This commit is contained in:
2024-07-13 18:32:01 +02:00
parent 6c4b01590d
commit 1b74c0a3bd
6 changed files with 267 additions and 180 deletions

View File

@@ -0,0 +1,18 @@
package fr.titionfire;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
@Path("/api")
public class BlackPage {
@GET
@Produces(MediaType.TEXT_PLAIN)
public Response get() {
return Response.noContent().build();
}
}