chore: establish development baseline

This commit is contained in:
2026-06-28 01:27:09 +08:00
commit dd53e3054e
131 changed files with 19327 additions and 0 deletions
+21
View File
@@ -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");