package cl.tica.portfolio.recipeapi.application.configs; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.web.client.RestTemplate; @Configuration @EnableAsync public class AppConfig { @Bean public RestTemplate restTemplate() { return new RestTemplate(); } }