Skip to content

Commit

Permalink
refactor: remove json-rpc command from meroctl
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejVukosav committed Dec 20, 2024
1 parent 55e713b commit 3874f2e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/meroctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meroctl"
version = "0.2.0"
version = "0.2.1"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
2 changes: 0 additions & 2 deletions crates/meroctl/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ pub enum SubCommands {
App(AppCommand),
Context(ContextCommand),
Identity(IdentityCommand),
JsonRpc(CallCommand),
Proxy(ProxyCommand),
Call(CallCommand),
}
Expand Down Expand Up @@ -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,
};
Expand Down

0 comments on commit 3874f2e

Please sign in to comment.