diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-26 15:08:04 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-26 15:08:04 +0100 |
commit | bc0f897803cbb9b7537010e9d4714a2a0b2a6872 (patch) | |
tree | 3371045ed249bf668340d9596fd67a71e9189ec2 /aero-collections/src/calendar/mod.rs | |
parent | ed47855ef1a6c9d10d48080367ff8b280530e362 (diff) | |
download | aerogramme-bc0f897803cbb9b7537010e9d4714a2a0b2a6872.tar.gz aerogramme-bc0f897803cbb9b7537010e9d4714a2a0b2a6872.zip |
Calendar Namespace
Diffstat (limited to 'aero-collections/src/calendar/mod.rs')
-rw-r--r-- | aero-collections/src/calendar/mod.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/aero-collections/src/calendar/mod.rs b/aero-collections/src/calendar/mod.rs index 708e1f1..d2217b8 100644 --- a/aero-collections/src/calendar/mod.rs +++ b/aero-collections/src/calendar/mod.rs @@ -1,5 +1,20 @@ pub mod namespace; +use anyhow::Result; + +use aero_user::login::Credentials; + +use crate::unique_ident::*; + pub struct Calendar { a: u64, } + +impl Calendar { + pub(crate) async fn open( + creds: &Credentials, + id: UniqueIdent, + ) -> Result<Self> { + todo!(); + } +} |