motivator 0.7.1

Indulge in some motivation++ via random quote(s).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Parser;
use std::process;

use motivator::Config;

fn main() {
    let config = Config::parse();

    if let Err(e) = motivator::run(config) {
        eprintln!("Application error: {e}");
        process::exit(1);
    }
}