aboutsummaryrefslogtreecommitdiff
path: root/src/web/lib.rs
blob: 9b7c8573f51cdc8559310ca0bea5be402085b1ea (plain) (blame)
1
2
3
4
5
6
7
8
9
//! Crate for handling web serving of s3 bucket
#[macro_use]
extern crate tracing;

mod error;
pub use error::Error;

mod web_server;
pub use web_server::run_web_server;