move some files around

This commit is contained in:
Lennart
2024-06-30 19:48:26 +02:00
parent ebf7f62c3b
commit 56876decd0
7 changed files with 12 additions and 7 deletions

View File

@@ -5,8 +5,8 @@ use actix_web::{
};
use rustical_auth::{AuthInfoExtractor, CheckAuthentication};
use rustical_dav::{
methods::propfind::{PropElement, PropfindType, ServicePrefix},
namespace::Namespace,
propfind::{PropElement, PropfindType, ServicePrefix},
resource::HandlePropfind,
xml::MultistatusElement,
};

View File

@@ -6,9 +6,9 @@ use event::resource::EventResource;
use principal::PrincipalResource;
use root::RootResource;
use rustical_auth::CheckAuthentication;
use rustical_dav::delete::route_delete;
use rustical_dav::propfind::{route_propfind, ServicePrefix};
use rustical_dav::proppatch::route_proppatch;
use rustical_dav::methods::{
propfind::ServicePrefix, route_delete, route_propfind, route_proppatch,
};
use rustical_store::CalendarStore;
use std::str::FromStr;
use std::sync::Arc;

View File

@@ -1,9 +1,7 @@
pub mod delete;
pub mod depth_extractor;
pub mod error;
pub mod methods;
pub mod namespace;
pub mod propfind;
pub mod proppatch;
pub mod resource;
pub mod xml;

View File

@@ -0,0 +1,7 @@
pub mod delete;
pub mod propfind;
pub mod proppatch;
pub use delete::route_delete;
pub use propfind::route_propfind;
pub use proppatch::route_proppatch;