Files
rustical/crates/store/src/lib.rs
2024-10-28 17:47:00 +01:00

16 lines
362 B
Rust

pub mod addressbook;
pub mod addressbook_store;
pub mod calendar_store;
pub mod error;
pub mod timestamp;
pub use error::Error;
pub mod auth;
pub mod calendar;
pub mod synctoken;
pub use addressbook_store::AddressbookStore;
pub use calendar_store::CalendarStore;
pub use addressbook::{AddressObject, Addressbook};
pub use calendar::{Calendar, CalendarObject};