cc-switch 0.1.31

A CLI tool for managing multiple Claude and Codex API configurations and automatically switching between them
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod codex_interactive;
#[allow(clippy::module_inception)]
pub mod interactive;

// Re-export functions for convenience
pub use crate::interactive::codex_interactive::handle_codex_interactive_selection;
pub use crate::interactive::interactive::{
    handle_current_command, handle_interactive_selection, launch_claude_with_env, read_input,
    read_sensitive_input,
};