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
//! Effect execution module for TEA pattern.
//!
//! This module handles the execution of side effects returned by the update function.
//! Effects are executed asynchronously and dispatch result messages back to the update function.

pub mod executor;
pub mod git;

pub use executor::EffectExecutor;