store: Refactoring to split calendar and addressbook

This commit is contained in:
Lennart
2024-10-28 17:44:22 +01:00
parent a44cbeb687
commit db01df5cb8
29 changed files with 40 additions and 50 deletions

View File

@@ -1,10 +1,14 @@
pub mod addressbook;
pub mod addressbook_store;
pub mod calendar_store;
pub mod error;
pub mod model;
pub mod timestamp;
pub use error::Error;
pub mod auth;
pub mod calendar;
pub use addressbook_store::AddressbookStore;
pub use calendar_store::CalendarStore;
pub use addressbook::{AddressObject, Addressbook};
pub use calendar::{Calendar, CalendarObject};