Removed code.

This commit is contained in:
2025-05-22 11:25:10 +03:00
parent 5c3af2abb3
commit 8ca8ab509d
15 changed files with 0 additions and 1144 deletions

View File

@@ -1,16 +0,0 @@
package com.example;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
@Path("/hello")
public class Example {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "Hello from Quarkus REST";
}
}