diff options
Diffstat (limited to 'src/bin/git_remote_nostr/list.rs')
| -rw-r--r-- | src/bin/git_remote_nostr/list.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/bin/git_remote_nostr/list.rs b/src/bin/git_remote_nostr/list.rs index f5eaee4..be83991 100644 --- a/src/bin/git_remote_nostr/list.rs +++ b/src/bin/git_remote_nostr/list.rs | |||
| @@ -5,6 +5,7 @@ use client::get_state_from_cache; | |||
| 5 | use git::RepoActions; | 5 | use git::RepoActions; |
| 6 | use ngit::{ | 6 | use ngit::{ |
| 7 | client, | 7 | client, |
| 8 | fetch::fetch_from_git_server, | ||
| 8 | git::{self}, | 9 | git::{self}, |
| 9 | git_events::{KIND_PULL_REQUEST, KIND_PULL_REQUEST_UPDATE, event_to_cover_letter, tag_value}, | 10 | git_events::{KIND_PULL_REQUEST, KIND_PULL_REQUEST_UPDATE, event_to_cover_letter, tag_value}, |
| 10 | list::{get_ahead_behind, list_from_remotes}, | 11 | list::{get_ahead_behind, list_from_remotes}, |
| @@ -14,10 +15,7 @@ use ngit::{ | |||
| 14 | }; | 15 | }; |
| 15 | use repo_ref::RepoRef; | 16 | use repo_ref::RepoRef; |
| 16 | 17 | ||
| 17 | use crate::{ | 18 | use crate::{fetch::make_commits_for_proposal, git::Repo}; |
| 18 | fetch::{fetch_from_git_server, make_commits_for_proposal}, | ||
| 19 | git::Repo, | ||
| 20 | }; | ||
| 21 | 19 | ||
| 22 | pub async fn run_list( | 20 | pub async fn run_list( |
| 23 | git_repo: &Repo, | 21 | git_repo: &Repo, |