diff options
author | Alex Auvolat <lx@deuxfleurs.fr> | 2025-01-30 16:12:16 +0100 |
---|---|---|
committer | Alex Auvolat <lx@deuxfleurs.fr> | 2025-01-30 16:12:16 +0100 |
commit | f8c6a8373d630311a18e9af011724181be68e5e1 (patch) | |
tree | 80a937f88be9339442f9d5fc499cd831b7d6b980 /src/garage/cli/cmd.rs | |
parent | 076ce04fe53123c5046f356e2b164a8093be2dfe (diff) | |
download | garage-f8c6a8373d630311a18e9af011724181be68e5e1.tar.gz garage-f8c6a8373d630311a18e9af011724181be68e5e1.zip |
convert cli key operations to admin rpc
Diffstat (limited to 'src/garage/cli/cmd.rs')
-rw-r--r-- | src/garage/cli/cmd.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/garage/cli/cmd.rs b/src/garage/cli/cmd.rs index debe7dec..a6540c65 100644 --- a/src/garage/cli/cmd.rs +++ b/src/garage/cli/cmd.rs @@ -17,12 +17,6 @@ pub async fn cmd_admin( AdminRpc::Ok(msg) => { println!("{}", msg); } - AdminRpc::KeyList(kl) => { - print_key_list(kl); - } - AdminRpc::KeyInfo(key, rb) => { - print_key_info(&key, &rb); - } AdminRpc::WorkerList(wi, wlo) => { print_worker_list(wi, wlo); } |