package com.example.jenkinstest.resources;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import org.springframework.stereotype.Component;
@Path("")
@Component
public class TestResource {
@GET
public String hello() {
return "hello";
}
}