document web crate

This commit is contained in:
Trinity Pointard
2021-03-26 22:05:16 +01:00
committed by Alex Auvolat
parent 67585a4ffa
commit a2e1617d84
4 changed files with 15 additions and 4 deletions
+4 -1
View File
@@ -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;