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-19 00:44:27 +01:00
|
|
|
|
|
|
|
|
/// Tipo de resultado para controladores de API
|
|
|
|
|
pub type ApiResult<T> = Result<T, (axum::http::StatusCode, String)>;
|
2025-03-17 21:28:08 +01:00
|
|
|
|