upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/bin/git_remote_nostr
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/git_remote_nostr')
-rw-r--r--src/bin/git_remote_nostr/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/git_remote_nostr/main.rs b/src/bin/git_remote_nostr/main.rs
index 29731e2..cf47a30 100644
--- a/src/bin/git_remote_nostr/main.rs
+++ b/src/bin/git_remote_nostr/main.rs
@@ -16,7 +16,7 @@ use client::{Connect, consolidate_fetch_reports, get_repo_ref_from_cache};
16use git::{RepoActions, nostr_url::NostrUrlDecoded}; 16use git::{RepoActions, nostr_url::NostrUrlDecoded};
17use ngit::{ 17use ngit::{
18 client::{self, Params}, 18 client::{self, Params},
19 git, 19 git::{self, utils::set_git_timeout},
20 login::existing::load_existing_login, 20 login::existing::load_existing_login,
21}; 21};
22use nostr::nips::nip19::Nip19Coordinate; 22use nostr::nips::nip19::Nip19Coordinate;
@@ -62,6 +62,8 @@ async fn main() -> Result<()> {
62 62
63 repo_ref.set_nostr_git_url(decoded_nostr_url.clone()); 63 repo_ref.set_nostr_git_url(decoded_nostr_url.clone());
64 64
65 let _ = set_git_timeout();
66
65 let stdin = io::stdin(); 67 let stdin = io::stdin();
66 let mut line = String::new(); 68 let mut line = String::new();
67 69