edge_core/lib.rs
1#![allow(dead_code)]
2#![allow(unused_imports)]
3//! Routing engine, service-adapter trait, and WebSocket client for `edge-agent`.
4
5pub mod adapter;
6pub mod cache;
7pub mod intent;
8pub mod registry;
9pub mod routing;
10pub mod ws_client;
11
12pub use adapter::{ServiceAdapter, StateUpdate};
13pub use intent::{Direction, InputPrimitive, Intent, TouchArea};
14pub use registry::GlyphRegistry;
15pub use routing::{RouteOutcome, RoutedIntent, RoutingEngine};
16pub use ws_client::WsClient;