diff options
author | Alex Auvolat <alex@adnab.me> | 2021-10-21 17:29:27 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-10-21 17:29:27 +0200 |
commit | bff5333c622ce5c8c3a151b4bd2d7ad2d04004c2 (patch) | |
tree | 526f8a96612c6bc8b69344db6e60aa861e006932 /src/garage/cli/mod.rs | |
parent | b7eccf52640b91c7243748e46506b88d0f1ceaef (diff) | |
download | garage-bff5333c622ce5c8c3a151b4bd2d7ad2d04004c2.tar.gz garage-bff5333c622ce5c8c3a151b4bd2d7ad2d04004c2.zip |
Move things around, improvements to CLI
Diffstat (limited to 'src/garage/cli/mod.rs')
-rw-r--r-- | src/garage/cli/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/garage/cli/mod.rs b/src/garage/cli/mod.rs new file mode 100644 index 00000000..1567f377 --- /dev/null +++ b/src/garage/cli/mod.rs @@ -0,0 +1,9 @@ +pub(crate) mod cmd; +pub(crate) mod init; +pub(crate) mod structs; +pub(crate) mod util; + +pub(crate) use cmd::*; +pub(crate) use init::*; +pub(crate) use structs::*; +pub(crate) use util::*; |