start adding support for comments on issues #9
1 changed files with 5 additions and 0 deletions
|
|
@ -90,6 +90,11 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
|
||||||
}
|
}
|
||||||
println!("");
|
println!("");
|
||||||
println!("{}", issue.description);
|
println!("{}", issue.description);
|
||||||
|
for (uuid, comment) in issue.comments.iter() {
|
||||||
|
println!("");
|
||||||
|
println!("comment: {}", uuid);
|
||||||
|
println!("{}", comment.description);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
return Err(anyhow::anyhow!("issue {} not found", issue_id));
|
return Err(anyhow::anyhow!("issue {} not found", issue_id));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue