aboutsummaryrefslogblamecommitdiff
path: root/src/web/lib.rs
blob: 7207c36585da442e1747e59fdd99b31d15367cfc (plain) (tree)
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::WebServer;