Crates.io | checkhost |
lib.rs | checkhost |
version | 0.1.0 |
source | src |
created_at | 2023-03-29 16:16:55.361131 |
updated_at | 2023-03-29 16:16:55.361131 |
description | A CLI and API Wrapper for https://check-host.net |
homepage | |
repository | |
max_upload_size | |
id | 824196 |
size | 7,141 |
check-host.net api wrapper as a library.
(Functions documentation not yet set)
use checkhost;
use std::{error::Error};
fn main() -> Result<(), Box<dyn Error>> {
let check_result = checkhost::check_http(host, nodes)?;
println("{:?}", check_result);
}