Files
unshell/src/tree/mod.rs
T

13 lines
401 B
Rust
Raw Normal View History

2026-04-24 12:32:24 -06:00
//! Explicit tree declaration, routing, and a small endpoint runtime.
2026-04-24 12:32:24 -06:00
mod endpoint;
mod hook;
mod routing;
2026-03-17 17:29:36 -06:00
2026-04-24 12:32:24 -06:00
pub use endpoint::{
ChildRoute, ConnectionState, Endpoint, EndpointError, EndpointOutcome, Ingress, LeafBehavior,
LeafSpec, LocalEvent,
};
2026-04-24 12:32:24 -06:00
pub use hook::{ActiveHook, HookKey, HookTable, PendingHook};
pub use routing::{LeafNode, RouteDecision, TreeNode, is_prefix, route_destination};