2026-02-11 00:15:26 +01:00
|
|
|
pub mod admin_handler;
|
2026-03-01 20:34:12 +01:00
|
|
|
pub mod app_password_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;
|
2026-05-09 19:18:33 +02:00
|
|
|
pub mod contacts_handler;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub mod dedup_handler;
|
2026-06-11 14:34:02 +00:00
|
|
|
pub mod delta_upload_handler;
|
2026-03-03 01:49:18 +01:00
|
|
|
pub mod device_auth_handler;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub mod favorites_handler;
|
2025-03-17 21:28:08 +01:00
|
|
|
pub mod file_handler;
|
|
|
|
|
pub mod folder_handler;
|
2026-05-20 22:56:00 +02:00
|
|
|
pub mod grant_handler;
|
2025-03-17 21:28:08 +01:00
|
|
|
pub mod i18n_handler;
|
2026-06-01 21:57:07 +02:00
|
|
|
pub mod magic_link_handler;
|
2026-04-08 15:14:03 +03:00
|
|
|
pub mod music_handler;
|
2026-06-19 11:51:01 +00:00
|
|
|
pub mod people_handler;
|
2026-03-05 13:40:02 -05:00
|
|
|
pub mod photos_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-05-30 23:35:47 +02:00
|
|
|
pub mod subject_group_handler;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub mod trash_handler;
|
2026-06-02 11:20:44 +02:00
|
|
|
pub mod users_handler;
|
2025-04-04 21:31:41 +02:00
|
|
|
pub mod webdav_handler;
|
2026-02-21 13:39:27 +01:00
|
|
|
pub mod wopi_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)>;
|