musket 0.7.0

Musket is a command line interface to send a URL to several destinations.
1
2
3
4
5
6
pub trait Destination {
    async fn fire(&self, url: &str, tags: &[String]) -> Result<(), Box<dyn std::error::Error>>;
}

pub mod linkedin;
pub mod turso;