diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-25 23:53:40 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-25 23:53:40 +0100 |
| commit | ee50baf800f4cb46d17858ba87a3648bb084d8b9 (patch) | |
| tree | 469a3c1ba4681c209997e8f55dc5a7f7fd9baf74 /src/bin/ngit/main.rs | |
| parent | e5cc566be82bbebb78f2c27ee13f3a5fafa4a0c8 (diff) | |
feat(sync): add cmd to sync git servers
with nostr state. optionally use 'force' flag
Diffstat (limited to 'src/bin/ngit/main.rs')
| -rw-r--r-- | src/bin/ngit/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/ngit/main.rs b/src/bin/ngit/main.rs index f896e97..f07203a 100644 --- a/src/bin/ngit/main.rs +++ b/src/bin/ngit/main.rs | |||
| @@ -32,6 +32,7 @@ async fn main() -> Result<()> { | |||
| 32 | Commands::Init(args) => sub_commands::init::launch(&cli, args).await, | 32 | Commands::Init(args) => sub_commands::init::launch(&cli, args).await, |
| 33 | Commands::List => sub_commands::list::launch().await, | 33 | Commands::List => sub_commands::list::launch().await, |
| 34 | Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await, | 34 | Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await, |
| 35 | Commands::Sync(args) => sub_commands::sync::launch(args).await, | ||
| 35 | } | 36 | } |
| 36 | } else { | 37 | } else { |
| 37 | // Handle the case where no command is provided | 38 | // Handle the case where no command is provided |