garage/src/web/lib.rs
Trinity Pointard c8906f200b
All checks were successful
continuous-integration/drone/pr Build is passing
make most requested changes
2021-04-06 05:28:47 +02:00

10 lines
166 B
Rust

//! 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;