1 2 3 4 5 6 7 8 9
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>; }