package com.example.jerseyexercise.resources;

import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import org.springframework.stereotype.Component;

@Path("/disney")
@Component
public class Disney {
    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getDisney() {
        return "Disney!!!";
    }
}
