Skip to main content

cvkg_cli/
lib.rs

1pub mod agent_replay;
2pub mod build_pipeline;
3pub mod dev_runtime;
4pub mod devtools;
5pub mod native_shell;
6pub mod patch_engine;
7pub mod runtime_connection;
8pub mod ws_server;
9
10// Re-exports for convenient access to key types
11pub use devtools::{
12    DevToolWidget, DevToolsDashboard, LogEntry, LogLevel, Panel, PanelContent, PerfMetrics,
13    capture_metrics, current_timestamp, format_log_entry,
14};
15pub use native_shell::{
16    NativeShell, ShellBackend, ShellError, ShellWindow, WindowEvent, create_window, poll_events,
17};