gnaw-ctx 0.1.1

Command-line and TUI tool that turns a codebase into an LLM-ready prompt (installs the `gnaw` binary).
1
2
3
4
5
6
7
8
9
//! View layer for the TUI application.
//!
//! This module contains all the formatting and display logic that was previously
//! mixed into the Model and widgets. It provides pure functions that take data
//! and return formatted strings or display structures.

pub mod formatters;

pub use formatters::*;