2024-06-26 01:46:51 -07:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
use crate::dartfile;
|
|
|
|
use clap::Parser;
|
|
|
|
|
|
|
|
/// dartgun's command line interface
|
|
|
|
|
|
|
|
#[derive(Parser, Debug)]
|
|
|
|
#[command(version, about, long_about = None)]
|
|
|
|
struct Cli {
|
|
|
|
action: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fire() {
|
|
|
|
println!("Attempting to find and read `dartfile.toml`.");
|
2024-06-26 16:46:58 -07:00
|
|
|
let gun = dartfile::parse(Path::new("./dartgun.toml"), Path::new("./machine.toml"));
|
2024-06-26 01:46:51 -07:00
|
|
|
println!("Writing symlinks...");
|
|
|
|
match gun.create_symlinks() {
|
|
|
|
Ok(_) => println!("Symlinks created successfully!"),
|
|
|
|
Err(err) => println!("Something went wrong while creating symlinks: {}", err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run_cli() {
|
|
|
|
let cli = Cli::parse();
|
|
|
|
match cli.action.as_deref() {
|
|
|
|
Some("fire") => fire(),
|
|
|
|
_ => println!("No action specified. Run `dartgun -h` for options."),
|
|
|
|
};
|
|
|
|
}
|