mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 05:52:19 +00:00
move some files around
This commit is contained in:
@@ -5,8 +5,8 @@ use actix_web::{
|
|||||||
};
|
};
|
||||||
use rustical_auth::{AuthInfoExtractor, CheckAuthentication};
|
use rustical_auth::{AuthInfoExtractor, CheckAuthentication};
|
||||||
use rustical_dav::{
|
use rustical_dav::{
|
||||||
|
methods::propfind::{PropElement, PropfindType, ServicePrefix},
|
||||||
namespace::Namespace,
|
namespace::Namespace,
|
||||||
propfind::{PropElement, PropfindType, ServicePrefix},
|
|
||||||
resource::HandlePropfind,
|
resource::HandlePropfind,
|
||||||
xml::MultistatusElement,
|
xml::MultistatusElement,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ use event::resource::EventResource;
|
|||||||
use principal::PrincipalResource;
|
use principal::PrincipalResource;
|
||||||
use root::RootResource;
|
use root::RootResource;
|
||||||
use rustical_auth::CheckAuthentication;
|
use rustical_auth::CheckAuthentication;
|
||||||
use rustical_dav::delete::route_delete;
|
use rustical_dav::methods::{
|
||||||
use rustical_dav::propfind::{route_propfind, ServicePrefix};
|
propfind::ServicePrefix, route_delete, route_propfind, route_proppatch,
|
||||||
use rustical_dav::proppatch::route_proppatch;
|
};
|
||||||
use rustical_store::CalendarStore;
|
use rustical_store::CalendarStore;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
pub mod delete;
|
|
||||||
pub mod depth_extractor;
|
pub mod depth_extractor;
|
||||||
pub mod error;
|
pub mod error;
|
||||||
|
pub mod methods;
|
||||||
pub mod namespace;
|
pub mod namespace;
|
||||||
pub mod propfind;
|
|
||||||
pub mod proppatch;
|
|
||||||
pub mod resource;
|
pub mod resource;
|
||||||
pub mod xml;
|
pub mod xml;
|
||||||
|
|
||||||
|
|||||||
7
crates/dav/src/methods/mod.rs
Normal file
7
crates/dav/src/methods/mod.rs
Normal 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;
|
||||||
Reference in New Issue
Block a user