notion_client/endpoints/
users.rs

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