More miscellaneous code cleanup

This commit is contained in:
Anthony Oteri
2023-09-21 16:17:51 -04:00
parent c97f19f7cb
commit 79aabc1dac
3 changed files with 18 additions and 23 deletions
+1 -5
View File
@@ -33,10 +33,6 @@ pub(crate) struct Cli {
#[command(subcommand)]
pub command: Commands,
/// Optional configuration file override.
#[arg(short = 'c', long = "config")]
pub config: Option<OsString>,
#[arg(
long = "log-level",
require_equals = true,
@@ -48,7 +44,7 @@ pub(crate) struct Cli {
)]
pub log_level: LogLevel,
/// The host or host:port for the Docker Registry
/// The host or host:port or full base URL of the Docker Registry
pub registry: String,
}