Clean code by commenting out some variable, and allowing some dead code.

This commit is contained in:
2025-10-24 23:24:47 +02:00
parent 442b5d25b4
commit 7c8e8eb236
8 changed files with 26 additions and 44 deletions
+3 -3
View File
@@ -2,8 +2,8 @@ use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct Repository {
id: u64,
name: String,
owner: String,
// id: u64,
// name: String,
// owner: String,
pub full_name: String,
}