"title" is just the first line of "description" now

This commit is contained in:
Sebastian Kuzminsky 2025-07-05 22:40:28 -06:00
parent 64022b16fa
commit 559e70077e
16 changed files with 40 additions and 44 deletions

View file

@ -34,7 +34,7 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
let issues =
entomologist::issues::Issues::new_from_dir(std::path::Path::new(issues_dir))?;
for (uuid, issue) in issues.issues.iter() {
println!("{} {} ({:?})", uuid, issue.title, issue.state);
println!("{} {} ({:?})", uuid, issue.title(), issue.state);
}
}
Commands::New { title, description } => {