tailtales 0.2.3

Flexible log viewer for logfmt and other formats with LUA scripting, filtering, filtering expressions, and real-time pipe following.
Documentation
1
2
3
4
5
6
7
8
use ratatui::crossterm::event::Event;

use crate::record::Record;

pub enum TuiEvent {
    Key(Event),
    NewRecord(Record),
}