garage/src/web/lib.rs
Alex 2559f63e9b
Some checks are pending
continuous-integration/drone/push Build is pending
continuous-integration/drone/pr Build is pending
Make all HTTP services optionnal
2022-09-07 17:54:16 +02:00

10 lines
165 B
Rust

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