bmo 0.5.0

Local-first SQLite-backed CLI issue tracker for AI agents
Documentation
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 CloseArgs {
    /// Issue ID
    pub id: String,
}

pub fn run(args: &CloseArgs, json: bool) -> anyhow::Result<()> {
    run_move(&args.id, "done", json)
}