tera-rand-cli 0.2.2

A CLI tool for generating a feed of random data from a Tera template
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Debug, Error)]
pub(crate) enum TeraRandCliError {
    #[error(
        "Either both or neither of `batch_size` and `batch_interval` should be included. \
         It is an error to include only one of the two."
    )]
    InvalidBatchArguments,
}