glim-tui 0.2.1

A TUI for monitoring GitLab CI/CD pipelines and projects
1
2
3
4
5
6
7
8
use crate::{event::GlimEvent, ui::StatefulWidgets};

pub trait InputProcessor {
    fn apply(&mut self, event: &GlimEvent, ui: &mut StatefulWidgets);

    fn on_pop(&self);
    fn on_push(&self);
}