aboutsummaryrefslogtreecommitdiff
path: root/src/web/lib.rs
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-03-26 22:05:16 +0100
committerAlex Auvolat <alex@adnab.me>2021-04-27 16:37:10 +0200
commita2e1617d845e72c44b07f782801549f209ce14cc (patch)
tree0aaa74ba86c724fe949c7c5005654619d6f37f81 /src/web/lib.rs
parent67585a4ffab14ba7c4b7c6dca530c177059a91d9 (diff)
downloadgarage-a2e1617d845e72c44b07f782801549f209ce14cc.tar.gz
garage-a2e1617d845e72c44b07f782801549f209ce14cc.zip
document web crate
Diffstat (limited to 'src/web/lib.rs')
-rw-r--r--src/web/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/web/lib.rs b/src/web/lib.rs
index 7d3b4d54..3e978af6 100644
--- a/src/web/lib.rs
+++ b/src/web/lib.rs
@@ -1,7 +1,10 @@
+#![deny(missing_crate_level_docs, missing_docs)]
+//! Crate for handling web serving of s3 bucket
#[macro_use]
extern crate log;
mod error;
pub use error::Error;
-pub mod web_server;
+mod web_server;
+pub use web_server::run_web_server;