pub trait OtlpClient { // Required method fn post_json( &mut self, endpoint: &str, payload: &str, content_type: &str, ) -> Result<()>; }