Skip to main content

cc_switch/interactive/
mod.rs

1#[allow(clippy::module_inception)]
2pub mod interactive;
3pub mod codex_interactive;
4
5// Re-export functions for convenience
6pub use crate::interactive::interactive::{
7    handle_current_command, handle_interactive_selection, launch_claude_with_env, read_input,
8    read_sensitive_input,
9};
10pub use crate::interactive::codex_interactive::handle_codex_interactive_selection;