Wrap app tokens and password of User in secret type

This commit is contained in:
Lennart
2025-04-16 16:30:45 +02:00
parent 9bff8c228d
commit ed84fb894f
4 changed files with 21 additions and 5 deletions

View File

@@ -6,12 +6,14 @@ pub use error::Error;
pub mod auth;
pub mod calendar;
mod contact_birthday_store;
mod secret;
mod subscription_store;
pub mod synctoken;
pub use addressbook_store::AddressbookStore;
pub use calendar_store::CalendarStore;
pub use contact_birthday_store::ContactBirthdayStore;
pub use secret::Secret;
pub use subscription_store::*;
pub use addressbook::{AddressObject, Addressbook};