openlatch-provider 0.2.1

Self-service onboarding CLI + runtime daemon for OpenLatch Editors and Providers
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Output rendering — tables, progress bars, color, output-mode dispatch.
//! Default = `table` for TTY, `json` for non-TTY (per `.claude/rules/cli-output.md`).
//!
//! T0 lays down the module skeleton. T1 (telemetry) and T2.5 (auth/UI) flesh
//! out the renderers. Anything not yet implemented uses `unimplemented!()` —
//! the dispatcher never reaches those code paths in the stub commands at T0.

pub mod color;
pub mod header;
pub mod output;
pub mod output_mode;
pub mod tables;
pub mod tty;