use crate::util::local_cmd;
use crate::CommandGlobalOpts;
use clap::Args;
#[derive(Clone, Debug, Args)]
pub struct SetDefaultNodeCommand {
pub name: String,
}
impl SetDefaultNodeCommand {
pub fn run(self, options: CommandGlobalOpts) {
local_cmd(run_impl(&self.name, &options));
}
}
fn run_impl(_name: &str, _options: &CommandGlobalOpts) -> miette::Result<()> {
todo!()
}