package com.moral.api.config.rest;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.web.client.RestTemplate;
|
|
@Configuration
|
public class RestConfig {
|
|
@Bean
|
public RestTemplate getRestTemplate() {
|
return new RestTemplate();
|
}
|
}
|