hailstorm 0.2.0

Load testing framework
Documentation
1
2
3
4
5
6
7
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    tonic_build::configure().compile(&["hailstorm.proto"], &["proto"])?;

    Ok(())
}