musket 0.22.0

Musket is a command line interface to send a URL to several destinations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use tracing::{error, info};

#[tokio::main]
async fn main() {
    match lib::run().await {
        Ok(messages) => {
            for message in &messages {
                info!("{message}");
            }
        }
        Err(e) => {
            error!("{e}");
            std::process::exit(1);
        }
    }
}