// SPDX-License-Identifier: MIT
// Adapted from rzfs @ea41cf0b5b29 (dual GPL-2.0 OR MIT; MIT elected); see NOTICE.
pub(crate) mod common;
pub use common::{Compression, CompressionError, Decompression, DecompressionError};
pub(crate) mod lzjb;
pub use lzjb::{LzjbDecoder, LzjbEncoder};