Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Busch committed Mar 28, 2023
1 parent b700d97 commit 52ba848
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,3 @@ async fn main() -> Result<(), Box<dyn Error>> {
}
Ok(())
}

async fn refresh_application(username: &str, access_token: &str) -> (Vec<ApiResponseItem>, Vec<ApiResponseItem>, i32, i32) {
let (issues_list_open, issues_list_closed, issues_list_open_len, issues_list_closed_len) = init_gh_data(&username, &access_token).await.unwrap();

(issues_list_open, issues_list_closed, issues_list_open_len, issues_list_closed_len)
}

0 comments on commit 52ba848

Please sign in to comment.