jev_repl/lib.rs
1//! The pieces of the `jev` REPL, exposed so they can be driven without a terminal.
2
3pub mod app;
4pub mod builder;
5pub mod codegen;
6pub mod cost;
7pub mod editor;
8pub mod evaluate;
9pub mod format;
10pub mod headless;
11pub mod highlight;
12pub mod install;
13pub mod installer;
14pub mod lessons;
15pub mod mcp;
16pub mod mock;
17pub mod presets;
18pub mod serve;
19pub mod session;
20pub mod sketch;
21pub mod skill;
22pub mod ui;
23pub mod words;
24pub mod wrap;