blob: 94b230375e5c5f75b4f4cd3a52edd9bde512bea8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.juick.server.configuration;
import com.juick.service.ImagesService;
import com.juick.service.ImagesServiceImpl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class StorageConfiguration {
@Bean
public ImagesService imagesService() {
return new ImagesServiceImpl();
}
}
|