cheap_alerts 0.1.0

A utility for sending text alerts via email
Documentation
1
2
3
4
5
6
7
8
9
10
11
use structopt::StructOpt;

mod cli;

fn main() {
    let opts = cli::Opts::from_args();
    let _ = cli::send_message(&opts).map_err(|e| {
        eprintln!("{}", e);
        std::process::exit(1)
    });
}