From bb54d557a67f57accf9fb912c2c364a967a0856f Mon Sep 17 00:00:00 2001 From: Matej Vukosav Date: Fri, 20 Dec 2024 20:43:32 +1100 Subject: [PATCH] refactor: remove json-rpc command from meroctl (#1027) --- crates/meroctl/src/cli.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/meroctl/src/cli.rs b/crates/meroctl/src/cli.rs index c4e543ef5..4c46952b9 100644 --- a/crates/meroctl/src/cli.rs +++ b/crates/meroctl/src/cli.rs @@ -51,7 +51,6 @@ pub enum SubCommands { App(AppCommand), Context(ContextCommand), Identity(IdentityCommand), - JsonRpc(CallCommand), Proxy(ProxyCommand), Call(CallCommand), } @@ -91,7 +90,6 @@ impl RootCommand { SubCommands::App(application) => application.run(&environment).await, SubCommands::Context(context) => context.run(&environment).await, SubCommands::Identity(identity) => identity.run(&environment).await, - SubCommands::JsonRpc(jsonrpc) => jsonrpc.run(&environment).await, SubCommands::Proxy(proxy) => proxy.run(&environment).await, SubCommands::Call(call) => call.run(&environment).await, };