marvin/src/main.rs

30 lines
509 B
Rust
Raw Normal View History

use clap::{Parser, Subcommand};
2022-12-03 22:50:12 -05:00
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 {},
}
2021-11-04 21:49:01 -04:00
fn main() {
2022-12-03 22:50:12 -05:00
let cfg = settings::Settings::new();
println!("Config parsed: {:?}", cfg);
let cli = Cli::parse();
match &cli.command {
Commands::Publish {} => {
todo!("publish command");
}
}
2021-11-04 21:49:01 -04:00
}