From 15714a24e38bfa09023d6c0746df45d952153267 Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo@trentesaux.fr> Date: Thu, 11 May 2023 14:10:21 +0200 Subject: [PATCH] default indexer local --- src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f251d64..7b57d33 100644 --- a/src/main.rs +++ b/src/main.rs @@ -56,7 +56,11 @@ pub struct Args { pub subcommand: Subcommand, /// Indexer URL - #[clap(short, long, default_value = "http://localhost:8080/v1/graphql")] + #[clap( + short, + long, + default_value = "http://localhost:8080/v1/graphql" + )] indexer: String, /// Do not use indexer #[clap(long)] -- GitLab