2026-02-11 00:15:26 +01:00
|
|
|
pub mod admin_settings_service;
|
2026-03-01 20:34:12 +01:00
|
|
|
pub mod app_password_service;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod auth_application_service;
|
2025-03-19 19:52:12 +01:00
|
|
|
pub mod batch_operations;
|
2026-05-22 13:10:47 +02:00
|
|
|
pub mod blob_lifecycle_service;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod calendar_service;
|
|
|
|
|
pub mod contact_service;
|
2026-06-11 14:34:02 +00:00
|
|
|
pub mod delta_upload_service;
|
2026-03-03 01:49:18 +01:00
|
|
|
pub mod device_auth_service;
|
2026-06-22 23:52:44 +02:00
|
|
|
pub mod drive_management_service;
|
2026-06-01 17:30:56 +02:00
|
|
|
pub mod external_identity_service;
|
2026-06-24 23:52:01 -06:00
|
|
|
pub mod external_mount_router;
|
2026-06-25 00:30:10 -06:00
|
|
|
pub mod external_upload_service;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod favorites_service;
|
2026-05-21 23:56:14 +02:00
|
|
|
pub mod file_lifecycle_service;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod file_management_service;
|
|
|
|
|
pub mod file_retrieval_service;
|
2025-03-19 19:52:12 +01:00
|
|
|
pub mod file_upload_service;
|
|
|
|
|
pub mod file_use_case_factory;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod folder_service;
|
|
|
|
|
pub mod i18n_application_service;
|
2026-06-02 10:47:37 +02:00
|
|
|
pub mod magic_link_invite_service;
|
2026-06-25 00:30:10 -06:00
|
|
|
pub mod mount_dto;
|
2026-06-24 23:52:01 -06:00
|
|
|
pub mod mount_registry;
|
2026-04-08 15:14:03 +03:00
|
|
|
pub mod music_service;
|
2026-03-04 14:02:15 +01:00
|
|
|
pub mod nextcloud_file_id_service;
|
|
|
|
|
pub mod nextcloud_login_flow_service;
|
2026-06-19 11:40:33 +00:00
|
|
|
pub mod people_service;
|
2026-06-19 10:57:01 +00:00
|
|
|
pub mod places_service;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod recent_service;
|
2026-06-05 09:46:51 +02:00
|
|
|
pub mod recipient_notification_service;
|
2025-03-27 01:13:34 +01:00
|
|
|
pub mod search_service;
|
2026-05-05 22:41:55 +02:00
|
|
|
pub mod share_browse_service;
|
2025-03-28 12:38:48 +01:00
|
|
|
pub mod share_service;
|
2026-04-14 21:33:38 +02:00
|
|
|
pub mod storage_settings_service;
|
2025-04-09 00:21:20 +02:00
|
|
|
pub mod storage_usage_service;
|
2026-05-30 23:35:47 +02:00
|
|
|
pub mod subject_group_service;
|
2025-04-13 01:04:04 +02:00
|
|
|
pub mod trash_service;
|
2026-06-01 15:35:24 +02:00
|
|
|
pub mod user_lifecycle_service;
|
2026-02-21 13:39:27 +01:00
|
|
|
pub mod wopi_lock_service;
|
|
|
|
|
pub mod wopi_token_service;
|
2025-03-24 16:47:42 +01:00
|
|
|
|
2026-03-17 11:21:16 +08:00
|
|
|
#[cfg(test)]
|
|
|
|
|
mod batch_operations_test;
|
2026-03-04 17:18:39 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
|
mod idor_protection_test;
|
2026-03-04 20:58:23 +01:00
|
|
|
#[cfg(test)]
|
2026-03-04 23:55:08 +01:00
|
|
|
mod trash_service_test;
|
2025-03-19 19:52:12 +01:00
|
|
|
|
|
|
|
|
// Re-exportar para facilitar acceso
|
|
|
|
|
pub use file_management_service::FileManagementService;
|
2026-02-14 01:29:34 +01:00
|
|
|
pub use file_retrieval_service::FileRetrievalService;
|
|
|
|
|
pub use file_upload_service::FileUploadService;
|
2025-03-19 19:52:12 +01:00
|
|
|
pub use file_use_case_factory::AppFileUseCaseFactory;
|