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