lifecycle worker: implement main functionality

This commit is contained in:
Alex Auvolat
2023-08-30 14:28:48 +02:00
parent a2e0e34db5
commit 2996dc875f
3 changed files with 101 additions and 9 deletions
+2 -2
View File
@@ -95,9 +95,9 @@ mod v08 {
/// If Some(x), object key has to start with prefix x
pub prefix: Option<String>,
/// If Some(x), object size has to be more than x
pub size_gt: Option<usize>,
pub size_gt: Option<u64>,
/// If Some(x), object size has to be less than x
pub size_lt: Option<usize>,
pub size_lt: Option<u64>,
}
#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)]