diff options
Diffstat (limited to 'src/web/lib.rs')
-rw-r--r-- | src/web/lib.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/web/lib.rs b/src/web/lib.rs index f28937b9..c06492a3 100644 --- a/src/web/lib.rs +++ b/src/web/lib.rs @@ -1,6 +1,9 @@ +//! Crate for handling web serving of s3 bucket #[macro_use] extern crate log; -pub mod error; +mod error; +pub use error::Error; -pub mod web_server; +mod web_server; +pub use web_server::run_web_server; |