diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-04-05 10:19:07 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-04-05 10:19:07 +0200 |
commit | a2d2649ef92324ccd314ee787577ed504522824a (patch) | |
tree | 437eb6f54c3d58da868d79fb181d6f42c10f211c /aero-collections/src | |
parent | 054bd52279faefd327be092ea7ec13f75f0a6163 (diff) | |
download | aerogramme-a2d2649ef92324ccd314ee787577ed504522824a.tar.gz aerogramme-a2d2649ef92324ccd314ee787577ed504522824a.zip |
WIP dav integration
Diffstat (limited to 'aero-collections/src')
-rw-r--r-- | aero-collections/src/calendar/namespace.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aero-collections/src/calendar/namespace.rs b/aero-collections/src/calendar/namespace.rs index 2fbc364..9c21d19 100644 --- a/aero-collections/src/calendar/namespace.rs +++ b/aero-collections/src/calendar/namespace.rs @@ -17,7 +17,7 @@ pub(crate) const CAL_LIST_SK: &str = "list"; pub(crate) const MAIN_CAL: &str = "Personal"; pub(crate) const MAX_CALNAME_CHARS: usize = 32; -pub(crate) struct CalendarNs(std::sync::Mutex<HashMap<UniqueIdent, Weak<Calendar>>>); +pub struct CalendarNs(std::sync::Mutex<HashMap<UniqueIdent, Weak<Calendar>>>); impl CalendarNs { /// Create a new calendar namespace |