JMAP for Calendat tests (Calendars and Events)

This commit is contained in:
mdecimus
2025-10-15 19:27:32 +02:00
parent 62eb087c37
commit 96d2947cdd
30 changed files with 1630 additions and 310 deletions

View File

@@ -37,3 +37,12 @@ impl TimeRange {
}
}
}
impl Default for TimeRange {
fn default() -> Self {
Self {
start: i64::MIN,
end: i64::MAX,
}
}
}