diff options
author | Trinity Pointard <trinity.pointard@gmail.com> | 2021-03-26 22:36:23 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-04-27 16:37:10 +0200 |
commit | 5c4b2cec3cc1242886199ed6d9248fae0f922036 (patch) | |
tree | 4e8760533e72e5d55a955a50b561fb9f80ae19d7 | |
parent | 1e3df189d0dc37880219338c53607152ae0c87e0 (diff) | |
download | garage-5c4b2cec3cc1242886199ed6d9248fae0f922036.tar.gz garage-5c4b2cec3cc1242886199ed6d9248fae0f922036.zip |
document garage crate
-rw-r--r-- | src/garage/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/garage/main.rs b/src/garage/main.rs index 6c86d0fb..34bf5501 100644 --- a/src/garage/main.rs +++ b/src/garage/main.rs @@ -1,4 +1,6 @@ +#![deny(missing_crate_level_docs, missing_docs)] #![recursion_limit = "1024"] +//! Garage CLI, used to interact with a running Garage instance, and to launch a Garage #[macro_use] extern crate log; @@ -25,7 +27,7 @@ use cli::*; #[derive(StructOpt, Debug)] #[structopt(name = "garage")] -pub struct Opt { +struct Opt { /// RPC connect to this host to execute client operations #[structopt(short = "h", long = "rpc-host", default_value = "127.0.0.1:3901")] pub rpc_host: SocketAddr, |