forked from alemi/upub
fix: clap clashes
This commit is contained in:
parent
5386c7ba7a
commit
225d8b9292
1 changed files with 2 additions and 2 deletions
|
@ -17,11 +17,11 @@ struct CliArgs {
|
||||||
/// command to run
|
/// command to run
|
||||||
command: CliCommand,
|
command: CliCommand,
|
||||||
|
|
||||||
#[arg(short, long, default_value = "sqlite://./upub.db")]
|
#[arg(short = 'd', long = "db", default_value = "sqlite://./upub.db")]
|
||||||
/// database connection uri
|
/// database connection uri
|
||||||
database: String,
|
database: String,
|
||||||
|
|
||||||
#[arg(short, long, default_value = "http://localhost:3000")]
|
#[arg(short = 'D', long, default_value = "http://localhost:3000")]
|
||||||
/// instance base domain, for AP ids
|
/// instance base domain, for AP ids
|
||||||
domain: String,
|
domain: String,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue