1//! OBO Format 1.4 patch write-back (ADR-0019). 2 3mod apply; 4mod error; 5mod patch; 6 7pub use apply::{ 8 apply_patches, apply_patches_to_text, atomic_write, ApplyPatchResult, PatchDiagnostic, 9}; 10pub use error::{OboError, Result}; 11pub use patch::OboPatchOp;