summaryrefslogtreecommitdiff
path: root/makima/src/daemon/storage/mod.rs
blob: cc5441a6ffab06f19c33e4beaf9b82452069bb0c (plain) (blame)
1
2
3
4
5
6
7
8
//! 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};