diff --git a/src/bin/ent/main.rs b/src/bin/ent/main.rs index 9c31c60..4a86883 100644 --- a/src/bin/ent/main.rs +++ b/src/bin/ent/main.rs @@ -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));