mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-22 09:09:07 -05:00
14 lines
356 B
Rust
14 lines
356 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[command(about = "A nostr relay written in Rust", author = env!("CARGO_PKG_AUTHORS"), version = env!("CARGO_PKG_VERSION"))]
|
|
pub struct CLIArgs {
|
|
#[arg(
|
|
short,
|
|
long,
|
|
help = "Use the <directory> as the location of the database",
|
|
required = false,
|
|
)]
|
|
pub db: Option<String>,
|
|
}
|