Files
Oxicloud/src/interfaces/api/handlers/mod.rs
T

28 lines
711 B
Rust
Raw Normal View History

pub mod admin_handler;
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;
pub mod contacts_handler;
2026-02-14 01:29:34 +01:00
pub mod dedup_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-04-08 15:14:03 +03:00
pub mod music_handler;
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;
2025-04-04 21:31:41 +02:00
pub mod webdav_handler;
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)>;