mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-09-18 13:34:53 +08:00
chore: establish development baseline
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
//! # BAT Adapters - 适配器层
|
||||
//!
|
||||
//! 提供各种版本和格式的适配器
|
||||
//!
|
||||
//! 包含:
|
||||
//! - Unity 版本适配器
|
||||
//! - Manifest 格式适配器
|
||||
//! - 客户端平台适配器
|
||||
|
||||
#![warn(missing_docs)]
|
||||
#![warn(clippy::all)]
|
||||
|
||||
pub mod unity;
|
||||
pub mod manifest;
|
||||
pub mod client;
|
||||
pub mod error;
|
||||
|
||||
pub use error::{AdapterError, Result};
|
||||
|
||||
/// Adapters 版本号
|
||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
Reference in New Issue
Block a user