notion_client/endpoints/
blocks.rs

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