Files
Oxicloud/src/lib.rs
T

20 lines
642 B
Rust
Raw Normal View History

2026-03-04 23:29:20 +01:00
#![allow(async_fn_in_trait)]
// Export the main project modules
2026-02-14 01:29:34 +01:00
pub mod application;
2025-03-19 00:44:27 +01:00
pub mod common;
pub mod domain;
pub mod infrastructure;
pub mod interfaces;
// Test-only helpers for #[cfg(integration_tests)] modules across the
// crate (shared pool URL guard + pre-suite cleanup OnceCell).
#[cfg(integration_tests)]
pub mod integration_test_support;
// Common public re-exports
2025-03-19 00:44:27 +01:00
pub use application::services::folder_service::FolderService;
pub use application::services::i18n_application_service::I18nApplicationService;
pub use domain::services::path_service::StoragePath;
2026-02-14 01:29:34 +01:00
pub use infrastructure::services::path_service::PathService;