kotoba_routing/lib.rs
1//! `kotoba-routing`
2//!
3//! A declarative, graph-based HTTP routing engine for the Kotoba ecosystem.
4//! It transforms `.kotoba` route files into executable workflows with KeyValueStore backend.
5
6pub mod engine;
7pub mod schema;
8
9pub use engine::*;
10pub use schema::*;
11
12// Re-export KeyValueStore for convenience
13pub use kotoba_storage::KeyValueStore;