2022-11-05 16:33:58 -04:00
|
|
|
use clap::{Parser, Subcommand};
|
|
|
|
|
2022-12-03 22:50:12 -05:00
|
|
|
mod settings;
|
|
|
|
|
2022-11-05 16:33:58 -04:00
|
|
|
#[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);
|
|
|
|
|
2022-11-05 16:33:58 -04:00
|
|
|
let cli = Cli::parse();
|
|
|
|
|
|
|
|
match &cli.command {
|
|
|
|
Commands::Publish {} => {
|
|
|
|
todo!("publish command");
|
|
|
|
}
|
|
|
|
}
|
2021-11-04 21:49:01 -04:00
|
|
|
}
|