chaotest 0.0.3

chaotic testing proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use core::time;
use std::thread::sleep;

use chaotest::init;
use chaotest::INSTRUCTION::*;
fn main() {
    let src = "my url";
    let instruction = OnceDelayWriteMs(2000);

    let ret = init(src, instruction);
    eprintln!("~~ {:?}", ret);

    sleep(time::Duration::from_secs(3600));
}