shuvarie 0.1.1

Blazingly fast AI coding TUI for chivalrous people
1
2
3
4
5
6
7
8
9
10
/// Enumeration of all possible events that the Shuvarie TUI might be handling.
///
/// An `Event` can be consumed by the `map_event()` method that maps the event to a message.
#[allow(clippy::large_enum_variant)]
pub enum Event {
    /// Event from a terminal emulator via Termina
    Terminal(termina::Event),
    /// Event from the Shuvarie core
    Core(shuvarie_core::Event),
}