Files
unshell/treetest/src/lib.rs
T

13 lines
377 B
Rust
Raw Normal View History

2026-04-24 16:19:42 -06:00
//! Interactive UnShell protocol demo crate.
//!
//! This crate intentionally keeps protocol logic in the root `unshell` crate and
//! uses that implementation as a consumer would: by building endpoint topologies,
//! simulating packet transport, and rendering an inspector UI around the results.
pub mod app;
pub mod model;
pub mod scenarios;
pub mod sim;
pub use app::run;