aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/java/com/juick/www/configuration/SapeConfiguration.java
blob: fe1bce60b8c4c6cfb5e4b2acb01b7c9bff69f06c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.juick.www.configuration;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import ru.sape.Sape;

/**
 * Created by vitalyster on 29.03.2017.
 */
public class SapeConfiguration {
    @Value("${sape_user}")
    private String token;

    @Bean
    public Sape sape() {
        return new Sape(token, "juick.com", 2000, 3600);
    }
}