shellql 0.1.6-beta

A Vim- and tmux-inspired terminal database manager for developers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod app;
pub mod controls;
pub mod render;
pub mod state;
pub mod ui;

pub use app::run_app;
pub use state::{
    AddConnectionForm, AppMode, AppState, Cell, Column, CommandLine, CommandLineMode,
    ConfirmAction, DASHBOARD_COMMANDS, EditorMode, FieldId, FloatingPane, FormInputMode,
    HOME_COMMANDS, LoadedTable, Overlay, Pane, PaneId, QueryEditorState, QueryResult, Row,
    SearchDirection, SearchState, Session, SortDirection, SortState, Tab, TableMode,
    TableViewState, TextMode, compute_completions,
};