diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-13 15:43:44 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-13 15:43:44 +0200 |
commit | ec16d166f940f59098ae5cc0c0b3d8298f1bcc78 (patch) | |
tree | 3dc5a6c7e655df875aa12aa86b6316f7948d51c1 /src/api/k2v/mod.rs | |
parent | 7a5d329e49cc7018cbfa14d37589f51860f66cf0 (diff) | |
download | garage-ec16d166f940f59098ae5cc0c0b3d8298f1bcc78.tar.gz garage-ec16d166f940f59098ae5cc0c0b3d8298f1bcc78.zip |
Separate error types for k2v and signature
Diffstat (limited to 'src/api/k2v/mod.rs')
-rw-r--r-- | src/api/k2v/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/k2v/mod.rs b/src/api/k2v/mod.rs index ee210ad5..b6a8c5cf 100644 --- a/src/api/k2v/mod.rs +++ b/src/api/k2v/mod.rs @@ -1,4 +1,5 @@ pub mod api_server; +mod error; mod router; mod batch; |