rsst 0.1.0

a commandline tool that dump articles in followed feeds into offline files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! the bin for `RSSt`.

use rsst::cli;
use structopt::StructOpt;

/// Attempts to retrieve feeds. Prints errors if encounter any.
pub fn main() {
    if let Err(e) = cli::run(cli::Opt::from_args()) {
        eprintln!("{}", e);
    }
}