mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 15:27:28 +00:00
14 lines
242 B
Rust
14 lines
242 B
Rust
|
|
use gamedig::TF2;
|
|
|
|
fn main() {
|
|
let response = TF2::query("5.15.202.107", None);
|
|
match response {
|
|
Err(_) => println!("fuck"),
|
|
Ok(r) => {
|
|
println!("{:?}", r);
|
|
|
|
()
|
|
}
|
|
}
|
|
}
|