blob: be0ff989b0696c84c2f7565f367df89ebf587379 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.juick.www.configuration;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import ru.sape.Sape;
/**
* Created by vitalyster on 29.03.2017.
*/
@Configuration
public class SapeConfiguration {
@Value("${sape_user}")
private String token;
@Bean
public Sape sape() {
return new Sape(token, "juick.com", 2000, 3600);
}
}
|