mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-09-18 11:34:59 +08:00
12 lines
315 B
Rust
12 lines
315 B
Rust
//! Manifest 适配器模块
|
|
//!
|
|
//! 提供多种 Manifest 格式的解析支持
|
|
|
|
pub mod addressables;
|
|
pub mod driver;
|
|
pub mod registry;
|
|
|
|
pub use addressables::AddressablesCatalogDriver;
|
|
pub use driver::{GenericManifest, ManifestDriver, ManifestFormat, ManifestMetadata};
|
|
pub use registry::ManifestDriverRegistry;
|