http-diff 0.0.5

http-diff - CLI tool to verify consistency across web server versions. Ideal for large-scale refactors, sanity tests and maintaining data integrity across versions.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Arguments {
    #[arg(short, long, default_value = "./configuration.json")]
    pub configuration: String,

    #[arg(short, long, default_value = "./output")]
    pub output_directory: String,

    #[arg(short, long, default_value = "false")]
    pub enable_log: bool,

    #[arg(long, default_value = "false")]
    pub headless: bool,
}