garage/src/web/lib.rs

10 lines
165 B
Rust
Raw Normal View History

2021-03-26 22:05:16 +01:00
//! Crate for handling web serving of s3 bucket
2020-11-02 15:48:39 +01:00
#[macro_use]
extern crate tracing;
2020-11-02 15:48:39 +01:00
2021-03-26 19:41:46 +01:00
mod error;
pub use error::Error;
2020-11-19 14:56:00 +01:00
2021-03-26 22:05:16 +01:00
mod web_server;
2022-09-07 17:54:16 +02:00
pub use web_server::WebServer;