Now removed code for real

This commit is contained in:
2025-05-21 12:17:45 +03:00
parent 2ef090f31c
commit c2e9c08297
12 changed files with 0 additions and 1030 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";
}
}