sabiql 1.8.2

A fast, driver-less TUI for browsing and editing PostgreSQL databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod handlers;
pub mod key_translator;

use crate::app::keybindings::KeyCombo;

#[derive(Clone, Debug)]
pub enum Event {
    Init,
    Key(KeyCombo),
    Paste(String),
    Resize(u16, u16),
}