add author and timestamp to Issue

This commit is contained in:
Sebastian Kuzminsky 2025-07-08 14:18:31 -06:00
parent 7acd94f7c0
commit e8b37cd86a
3 changed files with 59 additions and 12 deletions

View file

@ -106,6 +106,8 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
match issues.get_issue(issue_id) {
Some(issue) => {
println!("issue {}", issue_id);
println!("author: {}", issue.author);
println!("timestamp: {}", issue.timestamp);
println!("state: {:?}", issue.state);
if let Some(dependencies) = &issue.dependencies {
println!("dependencies: {:?}", dependencies);