pub trait Platform: Send + Sync {
// Required methods
fn build_payload(&self, rendered: &str, hints: &Map<String, Value>) -> Value;
fn endpoint(&self) -> &str;
}pub trait Platform: Send + Sync {
// Required methods
fn build_payload(&self, rendered: &str, hints: &Map<String, Value>) -> Value;
fn endpoint(&self) -> &str;
}