neo4j-cli 0.1.0

A CLI to interact with Neo4j graph database written in Rust
Documentation
use clap::{Args, Parser, Subcommand};

#[derive(Debug, Parser)]
#[clap(author, version, about)]
pub struct Cli {
    #[clap(subcommand)]
    pub command: Commands,
}

#[derive(Debug, Subcommand)]
pub enum Commands {
    /// Connect with the DB
    Connect(Connect),
}

#[derive(Debug, Args)]
pub struct Connect {
    pub uri: String,
    pub username: String,
    pub password: String,
}