2026-02-11 00:15:26 +01:00
|
|
|
pub mod admin_handler;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub mod auth_handler;
|
|
|
|
|
pub mod batch_handler;
|
|
|
|
|
pub mod caldav_handler;
|
|
|
|
|
pub mod carddav_handler;
|
|
|
|
|
pub mod chunked_upload_handler;
|
|
|
|
|
pub mod dedup_handler;
|
|
|
|
|
pub mod favorites_handler;
|
2025-03-17 21:28:08 +01:00
|
|
|
pub mod file_handler;
|
|
|
|
|
pub mod folder_handler;
|
|
|
|
|
pub mod i18n_handler;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub mod recent_handler;
|
2025-03-27 01:13:34 +01:00
|
|
|
pub mod search_handler;
|
2025-03-28 12:38:48 +01:00
|
|
|
pub mod share_handler;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub mod trash_handler;
|
2025-04-04 21:31:41 +02:00
|
|
|
pub mod webdav_handler;
|
2025-03-19 00:44:27 +01:00
|
|
|
|
|
|
|
|
/// Tipo de resultado para controladores de API
|
2026-02-14 01:29:34 +01:00
|
|
|
pub type ApiResult<T> = Result<T, (axum::http::StatusCode, String)>;
|