kono-wt 1.3.0

A single-binary CLI + TUI for managing Git worktrees and their GitHub pull requests.
Documentation
//! The terminal UI (spec ยง10): a live dashboard and action center.
//!
//! The state and pure event handling live in [`app`] and [`event`]; the views
//! in [`view`]/[`glyphs`]/[`theme`]; and the terminal runtime (raw mode, the
//! event loop, async loading) in [`terminal`]/[`runtime`].

pub mod app;
pub mod event;
pub mod glyphs;
pub mod hints;
pub mod options;
pub mod runtime;
pub mod terminal;
pub mod theme;
pub mod view;

pub use app::{App, Mode, Pane};
pub use event::Effect;
pub use options::OptionList;
pub(crate) use runtime::run_pr_compose;
pub use runtime::{ComposeSeed, run_pr_picker, run_tui};