mod command;
mod core;
use anyhow::Result;
use async_std::task;
use futures::StreamExt;
fn main() -> Result<()> {
let settings = config::Config::builder()
.add_source(config::File::with_name("rsstg"))
.build()?;
let core = core::Core::new(settings)?;
|
1
2
3
4
5
6
7
8
9
10
11
12
13
mod command;
mod core;
use anyhow::Result;
use async_std::task;
use async_std::stream::StreamExt;
fn main() -> Result<()> {
let settings = config::Config::builder()
.add_source(config::File::with_name("rsstg"))
.build()?;
let core = core::Core::new(settings)?;