diff --git a/src/bin/git_remote_nostr/main.rs b/src/bin/git_remote_nostr/main.rs
index 5f9f712..1a21341 100644
--- a/src/bin/git_remote_nostr/main.rs
+++ b/src/bin/git_remote_nostr/main.rs
@@ -9,7 +9,6 @@ use std::{
collections::HashSet,
env, io,
path::{Path, PathBuf},
- str::FromStr,
};
use anyhow::{bail, Context, Result};
@@ -28,7 +27,7 @@ mod utils;
#[tokio::main]
async fn main() -> Result<()> {
- let Some((decoded_nostr_url, git_repo)) = process_args()? else {
+ let Some((decoded_nostr_url, git_repo)) = process_args().await? else {
return Ok(());
};
@@ -118,7 +117,7 @@ async fn main() -> Result<()> {
}
}
-fn process_args() -> Result