diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-13 13:51:34 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-13 13:51:34 +0200 |
commit | 983037d965fdcdf089b09fa90fac31501defae9e (patch) | |
tree | 716efccaf76d5e165183d550cfc4bcf894482c7d /src/api/lib.rs | |
parent | e4e1f8f0d60545d81c1082ca5f0194962a4a4f79 (diff) | |
download | garage-983037d965fdcdf089b09fa90fac31501defae9e.tar.gz garage-983037d965fdcdf089b09fa90fac31501defae9e.zip |
Possibility of different error types for different APIs
Diffstat (limited to 'src/api/lib.rs')
-rw-r--r-- | src/api/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/lib.rs b/src/api/lib.rs index 5c522799..f8165d2a 100644 --- a/src/api/lib.rs +++ b/src/api/lib.rs @@ -6,7 +6,7 @@ pub mod error; pub use error::Error; mod encoding; -mod generic_server; +pub mod generic_server; pub mod helpers; mod router_macros; /// This mode is public only to help testing. Don't expect stability here |