reactive_graph_client/shared/config/
instance.rs

1use clap::Parser;
2
3#[derive(Parser, Debug)]
4pub struct InstanceConfigArgs {
5    /// The name of the instance.
6    #[arg(short = 'n', long = "instance-name", env = "REACTIVE_GRAPH_INSTANCE_NAME")]
7    pub name: Option<String>,
8
9    /// The description of the instance.
10    #[arg(short = 'd', long = "instance-description", env = "REACTIVE_GRAPH_INSTANCE_DESCRIPTION")]
11    pub description: Option<String>,
12}