//! Checkpoint storage for task recovery. //! //! This module provides functionality to store and restore git patches //! in PostgreSQL for recovering task worktrees when they are lost. mod patch; pub use patch::{create_patch, apply_patch, PatchError};