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;