blob: b4b9df5709d6d35ac5b5e713406e71bfcaa018c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.juick.api.configuration;
import com.juick.api.ApiServer;
import com.juick.api.TGBot;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;
import javax.inject.Inject;
/**
* Created by aalexeev on 11/12/16.
*/
@Configuration
@PropertySource("classpath:juick.conf")
public class ApiAppConfiguration {
@Inject
private Environment env;
@Bean
public ApiServer apiServer() {
return new ApiServer(env);
}
@Bean
public TGBot tgBot() {
return new TGBot(env.getProperty("telegram_token", ""));
}
}
|