prctrl 2.1.0

Terminal-native GitHub PR management. Stay on top of code reviews without leaving your terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! TUI module for PRCtrl.
//!
//! Provides a terminal user interface with:
//! - Left sidebar with command list
//! - Main area with PR list
//! - Auto-refresh mechanism
//! - Keyboard navigation

pub mod app;
pub mod events;
pub mod run;
pub mod ui;

pub use app::App;
pub use events::Event;
pub use run::run_tui;
pub use ui::Ui;