diff options
author | trinity-1686a <trinity@deuxfleurs.fr> | 2022-03-11 17:35:08 +0100 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2022-03-23 10:22:36 +0100 |
commit | 1eb7fdb08fed59a9e78adc24df2d96fda746c560 (patch) | |
tree | 4dd507a8676011c0793938cb37408870e93193a7 /src/api/lib.rs | |
parent | e934934f149da1f4288359dcc3b6d9b9b284525e (diff) | |
download | garage-1eb7fdb08fed59a9e78adc24df2d96fda746c560.tar.gz garage-1eb7fdb08fed59a9e78adc24df2d96fda746c560.zip |
add test framework for arbitraty S3 requests
and implement some basic test with it
Diffstat (limited to 'src/api/lib.rs')
-rw-r--r-- | src/api/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/lib.rs b/src/api/lib.rs index f865325e..de60ec53 100644 --- a/src/api/lib.rs +++ b/src/api/lib.rs @@ -10,7 +10,8 @@ mod encoding; mod api_server; pub use api_server::run_api_server; -mod signature; +/// This mode is public only to help testing. Don't expect stability here +pub mod signature; pub mod helpers; mod s3_bucket; |