rho_coding_agent/lib.rs
1mod agent;
2mod app;
3mod auth;
4mod cli;
5mod clipboard_image;
6mod commands;
7mod config;
8mod config_writer;
9mod credentials;
10mod herdr;
11mod keybindings;
12mod model;
13mod paths;
14mod prompt;
15mod prompt_templates;
16mod provider;
17mod provider_backend;
18mod reasoning;
19mod session;
20mod skills;
21mod tool;
22mod tools;
23mod transcript;
24mod tui;
25mod update;
26mod usage_limits;
27mod workspace;
28
29pub use app::run;
30pub use cli::Cli;