This commit is contained in:
Rahix 2026-03-01 15:23:57 +01:00
commit 1db4778dc4
8 changed files with 2410 additions and 0 deletions

5
src/task.rs Normal file
View file

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