1 2 3 4 5 6 7 8 9 10 11 12 13
use clap::Args; use super::move_cmd::run_move; #[derive(Args)] pub struct ReopenArgs { /// Issue ID pub id: String, } pub fn run(args: &ReopenArgs, json: bool) -> anyhow::Result<()> { run_move(&args.id, "todo", json) }