aboutsummaryrefslogtreecommitdiff
path: root/src/garage/cli/structs.rs
diff options
context:
space:
mode:
authorAlex <alex@adnab.me>2023-10-10 11:42:14 +0000
committerAlex <alex@adnab.me>2023-10-10 11:42:14 +0000
commite75fe2157d0973eb4320bbc87be5e54a1cb91a63 (patch)
treebbecb7fa9f4e7c3f0b4cb82eceff95ef401c04c8 /src/garage/cli/structs.rs
parent1243db87f2090a3302c7c8beb386e68ddf9b66b5 (diff)
parent2d5d7a703152345f380139fe9314d9e4c29b61ae (diff)
downloadgarage-e75fe2157d0973eb4320bbc87be5e54a1cb91a63.tar.gz
garage-e75fe2157d0973eb4320bbc87be5e54a1cb91a63.zip
Merge pull request 'Move convert_db command into main garage binary' (#645) from convert-db-main-binary into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/645
Diffstat (limited to 'src/garage/cli/structs.rs')
-rw-r--r--src/garage/cli/structs.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/garage/cli/structs.rs b/src/garage/cli/structs.rs
index 6e585e53..ee7c2988 100644
--- a/src/garage/cli/structs.rs
+++ b/src/garage/cli/structs.rs
@@ -3,6 +3,8 @@ use structopt::StructOpt;
use garage_util::version::garage_version;
+use crate::cli::convert_db;
+
#[derive(StructOpt, Debug)]
pub enum Command {
/// Run Garage server
@@ -54,6 +56,10 @@ pub enum Command {
/// Low-level debug operations on data blocks
#[structopt(name = "block", version = garage_version())]
Block(BlockOperation),
+
+ /// Convert metadata db between database engine formats
+ #[structopt(name = "convert-db", version = garage_version())]
+ ConvertDb(convert_db::ConvertDbOpt),
}
#[derive(StructOpt, Debug)]