Move events into their own file

This commit is contained in:
Lennart
2023-09-27 16:46:46 +02:00
parent 2718aeac52
commit 0a9d255029
6 changed files with 140 additions and 134 deletions

View File

@@ -4,7 +4,8 @@ use anyhow::{anyhow, Result};
use async_trait::async_trait;
use rustical_auth::AuthInfo;
use rustical_dav::resource::Resource;
use rustical_store::calendar::{CalendarStore, Event};
use rustical_store::calendar::CalendarStore;
use rustical_store::event::Event;
use std::sync::Arc;
use tokio::sync::RwLock;