update CLI to print the issue ID when a new issue is created

This commit is contained in:
sigil-03 2025-07-15 10:56:09 -06:00
parent 733100fefb
commit 6600bd3f6b

View file

@ -203,6 +203,7 @@ fn handle_command(
} }
Ok(issue) => { Ok(issue) => {
println!("created new issue '{}'", issue.title()); println!("created new issue '{}'", issue.title());
println!("ID: {}", issue.id);
return Ok(()); return Ok(());
} }
} }