1use reqwest::Client; 2 3pub mod create; 4pub mod retrieve; 5#[cfg(test)] 6mod tests; 7 8#[derive(Debug, Clone)] 9pub struct CommentsEndpoint { 10 pub(super) client: Client, 11}