2025-03-17 21:28:08 +01:00
|
|
|
pub mod file_handler;
|
|
|
|
|
pub mod folder_handler;
|
|
|
|
|
pub mod i18n_handler;
|
2025-03-19 00:44:27 +01:00
|
|
|
pub mod batch_handler;
|
2025-03-20 09:22:31 +01:00
|
|
|
pub mod auth_handler;
|
2025-03-24 16:47:42 +01:00
|
|
|
pub mod trash_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;
|
2025-04-02 03:43:44 +02:00
|
|
|
pub mod favorites_handler;
|
2025-04-02 05:08:30 +02:00
|
|
|
pub mod recent_handler;
|
2025-04-04 21:31:41 +02:00
|
|
|
pub mod webdav_handler;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod caldav_handler;
|
2026-02-10 18:46:59 +01:00
|
|
|
pub mod carddav_handler;
|
2026-02-03 17:59:04 +01:00
|
|
|
pub mod chunked_upload_handler;
|
|
|
|
|
pub mod dedup_handler;
|
2025-03-19 00:44:27 +01:00
|
|
|
|
|
|
|
|
/// Tipo de resultado para controladores de API
|
2025-04-04 21:31:41 +02:00
|
|
|
pub type ApiResult<T> = Result<T, (axum::http::StatusCode, String)>;
|