package org.ntlab.citrusserver.resources; import jakarta.ws.rs.GET; import jakarta.ws.rs.PUT; import jakarta.ws.rs.Path; import jakarta.ws.rs.Produces; import jakarta.ws.rs.core.MediaType; import org.springframework.stereotype.Component; @Path("/accounts") @Component public class TodoRest { @GET @Produces(MediaType.TEXT_PLAIN) public String getMessage(){ return null; } }