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

use reqwest::Client;

pub mod append;
pub mod delete;
pub mod retrieve;
#[cfg(test)]
mod tests;
pub mod update;

#[derive(Debug, Clone)]
pub struct BlocksEndpoint {
    pub(super) client: Arc<Client>,
}