adding missing cli file

This commit is contained in:
Godmode Galactus 2023-10-20 21:06:57 +02:00
parent 5136b09c89
commit f072b3ce3c
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
1 changed files with 8 additions and 0 deletions

8
src/cli.rs Normal file
View File

@ -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,
}