adding missing cli file
This commit is contained in:
parent
5136b09c89
commit
f072b3ce3c
|
@ -0,0 +1,8 @@
|
|||
use clap::Parser;
|
||||
|
||||
#[derive(Parser, Debug, Clone)]
|
||||
#[command(author, version, about, long_about = None)]
|
||||
pub struct Args {
|
||||
#[arg(short, long, default_value_t = String::from("http://127.0.0.1:10000"))]
|
||||
pub grpc_address: String,
|
||||
}
|
Loading…
Reference in New Issue