Skip to content

Commit

Permalink
Revert changes to other providers
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeviant committed Feb 20, 2025
1 parent 49e843c commit 4077e5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions crates/git_hosting_providers/src/providers/codeberg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ struct Author {

#[derive(Debug, Deserialize)]
struct User {
login: String,
id: u64,
avatar_url: String,
pub login: String,
pub id: u64,
pub avatar_url: String,
}

pub struct Codeberg;
Expand Down
4 changes: 2 additions & 2 deletions crates/git_hosting_providers/src/providers/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ struct Author {

#[derive(Debug, Deserialize)]
struct User {
id: u64,
avatar_url: String,
pub id: u64,
pub avatar_url: String,
}

pub struct Github;
Expand Down

0 comments on commit 4077e5c

Please sign in to comment.