blob: e5457f7a000feaac347442a8fd9f782acb544540 (
plain) (
tree)
|
|
//! 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::{
apply_patch, create_export_patch, create_patch, get_head_sha, get_parent_sha, ExportPatchResult,
PatchError,
};
|