diff options
author | Trinity Pointard <trinity.pointard@gmail.com> | 2021-03-26 22:32:09 +0100 |
---|---|---|
committer | Trinity Pointard <trinity.pointard@gmail.com> | 2021-04-06 05:26:48 +0200 |
commit | a74eccfd6e1cd438912800ea4f96a2f86d267d12 (patch) | |
tree | db1a0ccea1b29c8916ed3246ff71ea66b3323bac /src/web/error.rs | |
parent | ee9b685994a95787cd735ee17dc43875f549514f (diff) | |
download | garage-a74eccfd6e1cd438912800ea4f96a2f86d267d12.tar.gz garage-a74eccfd6e1cd438912800ea4f96a2f86d267d12.zip |
document api crate
Diffstat (limited to 'src/web/error.rs')
-rw-r--r-- | src/web/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/error.rs b/src/web/error.rs index 6da86199..2b8aeebe 100644 --- a/src/web/error.rs +++ b/src/web/error.rs @@ -8,7 +8,7 @@ use garage_util::error::Error as GarageError; pub enum Error { /// An error received from the API crate #[error(display = "API error: {}", _0)] - ApiError(#[error(source)] garage_api::error::Error), + ApiError(#[error(source)] garage_api::Error), // Category: internal error /// Error internal to garage |