repon 0.30.5

A terminal UI for the outer loop: seeing many git repos at once and acting on many in one gesture
1
2
3
4
5
6
7
8
9
10
/// Everything that changes application state arrives as a Message, whether it came from
/// a key, a timer, or a worker thread holding a clone of the sender.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Message {
    Tick,
    Render,
    Resize(u16, u16),
    Quit,
    Error(String),
}