marvin/src/main.rs
2022-12-03 22:50:12 -05:00

30 lines
509 B
Rust

use clap::{Parser, Subcommand};
mod settings;
#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {
#[clap(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
/// 🚀 Publish to IPFS
Publish {},
}
fn main() {
let cfg = settings::Settings::new();
println!("Config parsed: {:?}", cfg);
let cli = Cli::parse();
match &cli.command {
Commands::Publish {} => {
todo!("publish command");
}
}
}