summaryrefslogblamecommitdiff
path: root/makima/src/daemon/storage/mod.rs
blob: 0397e91b44155a3131643181aefad6a6f8fb63bc (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                                                       
                

                                                                                     
  
//! 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_merge_base_sha,
    get_parent_sha, ExportPatchResult, PatchError,
};