1use reqwest::Client; 2 3pub mod create; 4pub mod query; 5pub mod retrieve; 6pub mod update; 7 8#[derive(Debug, Clone)] 9pub struct DataSourcesEndpoint { 10 pub(super) client: Client, 11}