1
0
mirror of https://github.com/scsibug/nostr-rs-relay.git synced 2025-03-23 03:42:26 -04:00
2023-01-14 09:22:11 -06:00

15 lines
376 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",
default_value = ".",
required = false
)]
pub db: String,
}