1 2 3 4 5 6 7
use data::USER_AGENTS; mod data; pub fn get_ua() -> &'static str { return USER_AGENTS[fastrand::usize(..USER_AGENTS.len())]; }