musket 0.18.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
pub mod bluesky;
pub mod errors;
pub mod linkedin;
pub mod turso;

use errors::DestinationError;

pub trait Destination {
    async fn fire(&self, url: &str, tags: &[String]) -> Result<(), DestinationError>;
}