From bc0f897803cbb9b7537010e9d4714a2a0b2a6872 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 26 Mar 2024 15:08:04 +0100 Subject: Calendar Namespace --- aero-collections/src/calendar/mod.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'aero-collections/src/calendar/mod.rs') 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 { + todo!(); + } +} -- cgit v1.2.3