Add argument parser for the conduit executable

Allow fetching the version with `conduit --version`. Fixes #285.
merge-requests/551/head^2
Max Cohen 2 years ago committed by Charles Hall
parent 88fbd5b294
commit 9a81a49c6a
No known key found for this signature in database
GPG Key ID: 7B8E0645816E07CF

@ -0,0 +1,13 @@
//! Integration with `clap`
use clap::Parser;
/// Command line arguments
#[derive(Parser)]
#[clap(about, version)]
pub struct Args {}
/// Parse command line arguments into structured data
pub fn parse() -> Args {
Args::parse()
}

@ -1,4 +1,5 @@
pub mod api;
pub mod clap;
mod config;
mod database;
mod service;

@ -44,6 +44,8 @@ static GLOBAL: Jemalloc = Jemalloc;
#[tokio::main]
async fn main() {
clap::parse();
// Initialize config
let raw_config =
Figment::new()

Loading…
Cancel
Save