Skip to content

Instantly share code, notes, and snippets.

@nrb
Created September 18, 2017 19:30
Show Gist options
  • Select an option

  • Save nrb/42d167ef9dfb55771dea4f2908e01a82 to your computer and use it in GitHub Desktop.

Select an option

Save nrb/42d167ef9dfb55771dea4f2908e01a82 to your computer and use it in GitHub Desktop.
fn get_member(platform: i32, user: &str) -> String {
let url = format!("https://bungie.net/Platform/Destiny2/SearchDestinyPlayer/{}/{}/", platform, user);
url
}
fn main() {
println!("{}", get_member(2, &"guubu"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment