diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-28 14:10:03 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-28 14:10:03 +0100 |
| commit | caed1d751eb29d329119c1372c99a651980f42a4 (patch) | |
| tree | 469a3c1ba4681c209997e8f55dc5a7f7fd9baf74 /src/bin/git_remote_nostr/main.rs | |
| parent | e89dbc142f5a0a517f197562f5f228681d9aed47 (diff) | |
| parent | ee50baf800f4cb46d17858ba87a3648bb084d8b9 (diff) | |
Merge branch 'add-ngit-sync-cmd'
Diffstat (limited to 'src/bin/git_remote_nostr/main.rs')
| -rw-r--r-- | src/bin/git_remote_nostr/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/git_remote_nostr/main.rs b/src/bin/git_remote_nostr/main.rs index cf47a30..aac626b 100644 --- a/src/bin/git_remote_nostr/main.rs +++ b/src/bin/git_remote_nostr/main.rs | |||
| @@ -18,16 +18,15 @@ use ngit::{ | |||
| 18 | client::{self, Params}, | 18 | client::{self, Params}, |
| 19 | git::{self, utils::set_git_timeout}, | 19 | git::{self, utils::set_git_timeout}, |
| 20 | login::existing::load_existing_login, | 20 | login::existing::load_existing_login, |
| 21 | utils::read_line, | ||
| 21 | }; | 22 | }; |
| 22 | use nostr::nips::nip19::Nip19Coordinate; | 23 | use nostr::nips::nip19::Nip19Coordinate; |
| 23 | use utils::read_line; | ||
| 24 | 24 | ||
| 25 | use crate::{client::Client, git::Repo}; | 25 | use crate::{client::Client, git::Repo}; |
| 26 | 26 | ||
| 27 | mod fetch; | 27 | mod fetch; |
| 28 | mod list; | 28 | mod list; |
| 29 | mod push; | 29 | mod push; |
| 30 | mod utils; | ||
| 31 | 30 | ||
| 32 | #[tokio::main] | 31 | #[tokio::main] |
| 33 | async fn main() -> Result<()> { | 32 | async fn main() -> Result<()> { |