2025-03-19 19:52:12 +01:00
|
|
|
pub mod batch_operations;
|
2025-03-17 21:28:08 +01:00
|
|
|
pub mod file_service;
|
|
|
|
|
pub mod folder_service;
|
|
|
|
|
pub mod i18n_application_service;
|
2025-03-19 00:44:27 +01:00
|
|
|
pub mod storage_mediator;
|
2025-03-17 21:28:08 +01:00
|
|
|
|
2025-03-19 19:52:12 +01:00
|
|
|
// Nuevos servicios refactorizados
|
|
|
|
|
pub mod file_upload_service;
|
|
|
|
|
pub mod file_retrieval_service;
|
|
|
|
|
pub mod file_management_service;
|
|
|
|
|
pub mod file_use_case_factory;
|
2025-03-20 09:22:31 +01:00
|
|
|
pub mod auth_application_service;
|
2025-03-24 16:47:42 +01:00
|
|
|
pub mod trash_service;
|
2025-03-27 01:13:34 +01:00
|
|
|
pub mod search_service;
|
2025-03-28 12:38:48 +01:00
|
|
|
pub mod share_service;
|
2025-04-02 03:43:44 +02:00
|
|
|
pub mod favorites_service;
|
2025-04-02 05:08:30 +02:00
|
|
|
pub mod recent_service;
|
2025-03-24 16:47:42 +01:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod trash_service_test;
|
2025-03-19 19:52:12 +01:00
|
|
|
|
|
|
|
|
// Re-exportar para facilitar acceso
|
|
|
|
|
pub use file_upload_service::FileUploadService;
|
|
|
|
|
pub use file_retrieval_service::FileRetrievalService;
|
|
|
|
|
pub use file_management_service::FileManagementService;
|
|
|
|
|
pub use file_use_case_factory::AppFileUseCaseFactory;
|