ip-api-wrapper 0.1.0

Simple API Wrapper IP-API.com
ip-api-wrapper-0.1.0 is not a library.

Simple API Wrapper IP-API.com

Simple code

#[tokio::main]
async fn main() {
    let client = Client::new();
    let ip = "8.8.8.8";
    let info_full = IPInfo::get_info(&client, ip).await.unwrap();
    println!("{:#?}", info_full.as_field);
}