upleb.uk

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

summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-07-19 21:20:53 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-07-19 21:20:53 +0100
commit8531328558c7f5870be3571f63a952743eb0b9e6 (patch)
treef72b57d2a6e571181d21a55fb03aca70d899cec3 /src/main.rs
parentfca1d193a46eba17255b5372adffac2396e48c04 (diff)
feat: integrate `fetch` into `push`
as part of a project to use `fetch` and the stored cache everywhere
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 1790c21..81eaf2f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -62,7 +62,7 @@ async fn main() -> Result<()> {
62 Commands::Fetch(args) => sub_commands::fetch::launch(&cli, args).await, 62 Commands::Fetch(args) => sub_commands::fetch::launch(&cli, args).await,
63 Commands::Login(args) => sub_commands::login::launch(&cli, args).await, 63 Commands::Login(args) => sub_commands::login::launch(&cli, args).await,
64 Commands::Init(args) => sub_commands::init::launch(&cli, args).await, 64 Commands::Init(args) => sub_commands::init::launch(&cli, args).await,
65 Commands::Send(args) => sub_commands::send::launch(&cli, args).await, 65 Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await,
66 Commands::List => sub_commands::list::launch().await, 66 Commands::List => sub_commands::list::launch().await,
67 Commands::Pull => sub_commands::pull::launch().await, 67 Commands::Pull => sub_commands::pull::launch().await,
68 Commands::Push(args) => sub_commands::push::launch(&cli, args).await, 68 Commands::Push(args) => sub_commands::push::launch(&cli, args).await,