mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 22:52:22 +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_dav::{
|
||||
methods::propfind::{PropElement, PropfindType, ServicePrefix},
|
||||
namespace::Namespace,
|
||||
propfind::{PropElement, PropfindType, ServicePrefix},
|
||||
resource::HandlePropfind,
|
||||
xml::MultistatusElement,
|
||||
};
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
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