Remove some unused fields

This commit is contained in:
Brian Tarricone 2023-09-16 00:50:18 -07:00
parent 1dcba64095
commit 11be50d89f

View File

@ -14,9 +14,7 @@ pub struct User {
#[derive(Debug, Deserialize)]
pub struct Project {
pub name: String,
pub description: String,
pub web_url: String,
pub avatar_url: Option<String>,
pub namespace: String,
pub path_with_namespace: String,
pub default_branch: String,
@ -26,7 +24,6 @@ pub struct Project {
pub struct Repository {
pub name: String,
pub url: String,
pub description: String,
}
#[derive(Debug, Deserialize)]