mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-22 07:06:43 +08:00
7 lines
166 B
Rust
7 lines
166 B
Rust
//! Binary Patch 模块占位
|
|
|
|
/// Binary Patch 应用(待实现)
|
|
pub fn apply_patch(_old: &[u8], _patch: &[u8]) -> crate::Result<Vec<u8>> {
|
|
Ok(Vec::new())
|
|
}
|