nasu 0.1.0

Command-line utility which poll on remote addresses in order to perform status checks periodically
Documentation
1
2
3
4
5
6
7
8
9
10
use std::collections::HashMap;

#[derive(Debug)]
pub struct Report {
    pub id: String,
    pub headers: HashMap<String, String>,
    pub status_code: u16,
    pub req_start: u128,
    pub req_end: u128,
}