[import-netapp] import Netapp code into Garage codebase

This commit is contained in:
Alex Auvolat
2024-02-13 12:55:41 +01:00
parent a2ab275da8
commit 5ea24254a9
38 changed files with 3741 additions and 118 deletions
+3 -3
View File
@@ -22,9 +22,9 @@ pub enum Error {
NoSuchBucket(String),
}
impl From<netapp::error::Error> for Error {
fn from(e: netapp::error::Error) -> Self {
Error::Internal(GarageError::Netapp(e))
impl From<garage_net::error::Error> for Error {
fn from(e: garage_net::error::Error) -> Self {
Error::Internal(GarageError::Net(e))
}
}