Files
BlueArchiveToolkit/crates/bat-patch/src/binary.rs
T

7 lines
166 B
Rust

//! Binary Patch 模块占位
/// Binary Patch 应用(待实现)
pub fn apply_patch(_old: &[u8], _patch: &[u8]) -> crate::Result<Vec<u8>> {
Ok(Vec::new())
}