We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12ed0f5 commit 1e0b2baCopy full SHA for 1e0b2ba
src/main.rs
@@ -9,12 +9,16 @@ use tokio::signal;
9
10
#[derive(Debug, StructOpt)]
11
struct Opts {
12
+ /// Log verbosity. Overrides logger level in config, but is overridden by HYPERION_LOG
13
#[structopt(short, long, parse(from_occurrences))]
14
verbose: u32,
15
+ /// Path to the configuration database
16
#[structopt(short, long = "db-path")]
17
database_path: Option<String>,
18
+ /// Path to a TOML config file. Overrides the configuration database
19
#[structopt(short, long = "config")]
20
config_path: Option<PathBuf>,
21
+ /// Dump the loaded configuration
22
#[structopt(long)]
23
dump_config: bool,
24
}
0 commit comments