Skip to main content

piw/
lib.rs

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