mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 19:22:26 +00:00
Work on axum support
This commit is contained in:
@@ -2,15 +2,17 @@ mod delete;
|
||||
mod propfind;
|
||||
mod proppatch;
|
||||
|
||||
pub(crate) use delete::route_delete;
|
||||
pub(crate) use propfind::route_propfind;
|
||||
pub(crate) use proppatch::route_proppatch;
|
||||
|
||||
#[cfg(feature = "actix")]
|
||||
pub(crate) use delete::actix_route_delete;
|
||||
#[cfg(feature = "axum")]
|
||||
pub(crate) use delete::axum_route_delete;
|
||||
|
||||
#[cfg(feature = "actix")]
|
||||
pub(crate) use propfind::actix_route_propfind;
|
||||
#[cfg(feature = "axum")]
|
||||
pub(crate) use propfind::axum_route_propfind;
|
||||
|
||||
#[cfg(feature = "actix")]
|
||||
pub(crate) use proppatch::actix_route_proppatch;
|
||||
#[cfg(feature = "axum")]
|
||||
pub(crate) use proppatch::axum_route_proppatch;
|
||||
|
||||
Reference in New Issue
Block a user