diff options
author | Trinity Pointard <trinity.pointard@gmail.com> | 2021-03-26 19:41:46 +0100 |
---|---|---|
committer | Trinity Pointard <trinity.pointard@gmail.com> | 2021-04-06 05:26:48 +0200 |
commit | 30bec0758b943351d946234329b9a46bd83749a1 (patch) | |
tree | 120910caa43e400c0431463f47ed3fc114af77ea /src/web/lib.rs | |
parent | b476b702c8a1e4027a1abc16d54afbd61fdcf984 (diff) | |
download | garage-30bec0758b943351d946234329b9a46bd83749a1.tar.gz garage-30bec0758b943351d946234329b9a46bd83749a1.zip |
attempt at documenting table crate
Diffstat (limited to 'src/web/lib.rs')
-rw-r--r-- | src/web/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/lib.rs b/src/web/lib.rs index f28937b9..7d3b4d54 100644 --- a/src/web/lib.rs +++ b/src/web/lib.rs @@ -1,6 +1,7 @@ #[macro_use] extern crate log; -pub mod error; +mod error; +pub use error::Error; pub mod web_server; |