1 2 3 4 5 6 7 8 9
use url::Url; use crate::auth::Auth; #[derive(Debug, Clone)] pub struct Config { pub base_url: Url, pub token: Auth, }