Skip to main content

piw/
lib.rs

1//! piw: terminal viewer and live replay server for pi-workflows SQLite workflow state.
2//! The library form exists for integration tests; `main.rs` is the CLI.
3
4pub mod canvas;
5pub mod client;
6pub mod format;
7pub mod layout;
8pub mod protocol;
9pub mod render;
10pub mod server;
11pub mod session;
12pub mod source;
13pub mod state;
14pub mod theme;
15pub mod ui;