musket 0.22.0

Musket is a command line interface to send a URL to several destinations.
Documentation
#[derive(Debug)]
pub enum DestinationError {
    Bluesky { message: String },
    LinkedIn { message: String },
    Mastodon { message: String },
    Turso { message: String },
}

impl std::fmt::Display for DestinationError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        use DestinationError::{Bluesky, LinkedIn, Mastodon, Turso};
        let output = match self {
            Bluesky { message: m }
            | LinkedIn { message: m }
            | Mastodon { message: m }
            | Turso { message: m } => m,
        };
        write!(f, "{output}")
    }
}