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