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