start adding support for comments on issues #9

Merged
seb merged 4 commits from comments into main 2025-07-07 22:35:33 -06:00
Showing only changes of commit 9870d42fdc - Show all commits

View file

@ -90,6 +90,11 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
}
println!("");
println!("{}", issue.description);
for (uuid, comment) in issue.comments.iter() {
println!("");
println!("comment: {}", uuid);
println!("{}", comment.description);
}
}
None => {
return Err(anyhow::anyhow!("issue {} not found", issue_id));