Parse issue list

This commit is contained in:
Rahix 2026-03-01 15:47:42 +01:00
parent 1db4778dc4
commit b3e0270e38
5 changed files with 56 additions and 29 deletions

View file

@ -1,5 +1,5 @@
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Task {
issue_number: u64,
title: String,
pub issue_number: u64,
pub title: String,
}