mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-09-18 06:34:54 +08:00
14 lines
399 B
Rust
14 lines
399 B
Rust
//! 仓储接口模块
|
|
//!
|
|
//! 定义所有数据访问接口
|
|
|
|
pub mod cas_repository;
|
|
pub mod resource_repository;
|
|
pub mod translation_memory_repository;
|
|
pub mod translation_repository;
|
|
|
|
pub use cas_repository::CasRepository;
|
|
pub use resource_repository::ResourceRepository;
|
|
pub use translation_memory_repository::TranslationMemoryRepository;
|
|
pub use translation_repository::TranslationRepository;
|