eazygit 0.5.1

A fast TUI for Git with staging, conflicts, rebase, and palette-first UX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(unused_imports)]
//! Middleware for TEA pattern.
//!
//! Middleware intercepts messages before and after they are processed by update().
//! This enables cross-cutting concerns like logging, analytics, and debugging.

pub mod logging;
pub mod metrics;
pub mod snapshots;

pub use logging::ActionLogger;
pub use metrics::Metrics;
pub use snapshots::SnapshotManager;