12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
StackableErr,
};
use tgbot::handler::LongPoll;
#[async_std::main]
async fn main() -> Result<()> {
let settings = config::Config::builder()
.add_source(config::File::with_name("rsstg"))
.build()
.stack()?;
let core = core::Core::new(settings).await.stack()?;
LongPoll::new(core.tg.clone(), core).run().await;
|
>
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
StackableErr,
};
use tgbot::handler::LongPoll;
#[async_std::main]
async fn main() -> Result<()> {
let settings = config::Config::builder()
.set_default("api_gateway", "https://api.telegram.org").stack()?
.add_source(config::File::with_name("rsstg"))
.build()
.stack()?;
let core = core::Core::new(settings).await.stack()?;
LongPoll::new(core.tg.clone(), core).run().await;
|