garage/src/web/lib.rs

8 lines
86 B
Rust
Raw Normal View History

2020-11-02 14:48:39 +00:00
#[macro_use]
extern crate log;
2021-03-26 18:41:46 +00:00
mod error;
pub use error::Error;
2020-11-19 13:56:00 +00:00
2020-11-02 14:48:39 +00:00
pub mod web_server;