mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-09 06:47:59 -06:00
13 lines
377 B
Rust
13 lines
377 B
Rust
|
|
//! 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;
|