locket 0.17.3

Helper tool for secret injection as a process dependency
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::health::StatusFile;
use clap::Args;

#[derive(Args, Debug)]
pub struct HealthArgs {
    /// Status file path used for healthchecks
    #[arg(
        long = "status-file",
        env = "LOCKET_STATUS_FILE",
        default_value = StatusFile::default().to_string()
    )]
    pub status_file: StatusFile,
}