1#[macro_export] 2macro_rules! repo { 3 ($user:expr, $repo:expr) => {{ 4 let result = format!("{}/{}", $user, $repo); 5 result.trim_matches('/').to_string() 6 }}; 7}