libfatigue 0.2.18

an extensible load testing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{ContextActionFactory, ContextActionFactoryError};

pub mod csv;
pub mod json;
pub mod literal;

pub fn register_default_context_actions(
    factory: &mut ContextActionFactory,
) -> Result<(), ContextActionFactoryError> {
    factory.register_builder(literal::get_builder())?;
    factory.register_builder(json::get_builder())?;
    factory.register_builder(csv::get_builder())?;
    Ok(())
}