diff options
author | Alex Auvolat <lx@deuxfleurs.fr> | 2025-01-31 18:42:14 +0100 |
---|---|---|
committer | Alex Auvolat <lx@deuxfleurs.fr> | 2025-01-31 18:42:14 +0100 |
commit | afa28706e5566737376f8448bcc548f780f0f57f (patch) | |
tree | ca0b8285cc825fcef4ba6a1b722a204f71d79782 /src/api/common/lib.rs | |
parent | 84f1db91c4e53a8d0c037fd01adb695fd9400ed5 (diff) | |
download | garage-afa28706e5566737376f8448bcc548f780f0f57f.tar.gz garage-afa28706e5566737376f8448bcc548f780f0f57f.zip |
split s3/cors.rs into also common/cors.rs
Diffstat (limited to 'src/api/common/lib.rs')
-rw-r--r-- | src/api/common/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/common/lib.rs b/src/api/common/lib.rs index 49d463d7..0e655a53 100644 --- a/src/api/common/lib.rs +++ b/src/api/common/lib.rs @@ -4,9 +4,9 @@ extern crate tracing; pub mod common_error; +pub mod cors; pub mod encoding; pub mod generic_server; pub mod helpers; pub mod router_macros; -/// This mode is public only to help testing. Don't expect stability here pub mod signature; |