diff options
author | Alex Auvolat <lx@deuxfleurs.fr> | 2025-01-31 18:18:04 +0100 |
---|---|---|
committer | Alex Auvolat <lx@deuxfleurs.fr> | 2025-01-31 18:18:29 +0100 |
commit | 9fa20d45bebab2a3f66b9721c3643dbd607d944d (patch) | |
tree | 4c5cc3dee19f7cbd9e146a90ef5cbddb052716d5 /src/api/k2v/lib.rs | |
parent | 9330fd79d3466051394f6d419a247d46da8f5151 (diff) | |
download | garage-9fa20d45bebab2a3f66b9721c3643dbd607d944d.tar.gz garage-9fa20d45bebab2a3f66b9721c3643dbd607d944d.zip |
wip: split garage_api into garage_api_{common,s3,k2v,admin}
Diffstat (limited to 'src/api/k2v/lib.rs')
-rw-r--r-- | src/api/k2v/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/api/k2v/lib.rs b/src/api/k2v/lib.rs new file mode 100644 index 00000000..334ae46b --- /dev/null +++ b/src/api/k2v/lib.rs @@ -0,0 +1,12 @@ +#[macro_use] +extern crate tracing; + +pub mod api_server; +mod error; +mod router; + +mod batch; +mod index; +mod item; + +mod range; |