1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::sync::Arc;

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: Arc<Client>,
}