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

mod error;
pub use error::Error;

mod web_server;
pub use web_server::run_web_server;