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