rnp 0.1.146

A simple layer 4 ping tool for cloud.
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Once;

static INIT: Once = Once::new();

pub fn initialize() {
    INIT.call_once(|| {
        let _ = env_logger::builder().format_timestamp_micros().is_test(true).try_init();
    });
}