use indexmap::IndexMap; use serde_json::Value; use crate::data_source::DataSource; pub struct PBDataSource; impl DataSource for PBDataSource { fn get_champs_with_positions_and_patch( &self, _client: &reqwest::Client, ) -> (IndexMap>, String) { (IndexMap::new(), String::new()) } fn get_champ_data( &self, _id: &str, _position: &str, _client: &reqwest::Client, ) -> Option { None } }