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