Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35079 vikas 1
package com.spice.profitmandi.shopify.config;
2
 
3
import org.springframework.context.annotation.Bean;
4
import org.springframework.context.annotation.Configuration;
5
import org.springframework.web.client.RestTemplate;
6
 
7
@Configuration
8
public class RestTemplateConfig {
9
    @Bean
10
    public RestTemplate restTemplate() {
11
        return new RestTemplate();
12
    }
13
}