删除后端未使用的历史 helper、mapper、handler 和 re-export 将仅测试使用的导入、常量和辅助函数收口到 cfg(test) 补齐 Jump Hop 测试构造体字段并对齐 Match3D 当前素材表测试契约 验证后端 workspace cargo check 与 Match3D、Puzzle 相关测试
23 lines
598 B
Rust
23 lines
598 B
Rust
mod clock;
|
|
mod errors;
|
|
mod generation;
|
|
mod handlers;
|
|
mod persist;
|
|
mod publish;
|
|
mod settings;
|
|
mod targets;
|
|
mod tasks;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
mod types;
|
|
|
|
pub use handlers::{
|
|
create_background_music_task, create_sound_effect_task,
|
|
create_visual_novel_background_music_task, create_visual_novel_sound_effect_task,
|
|
publish_background_music_asset, publish_sound_effect_asset,
|
|
publish_visual_novel_background_music_asset, publish_visual_novel_sound_effect_asset,
|
|
};
|
|
|
|
pub(crate) use generation::generate_sound_effect_asset_for_creation;
|
|
pub(crate) use types::GeneratedCreationAudioTarget;
|