cc-switch 0.1.8

A CLI tool for managing multiple Claude API configurations and automatically switching between them
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! cc-switch: A CLI tool for managing multiple Claude API configurations
//!
//! This library provides functionality to store, manage, and switch between
//! multiple Claude API configurations.

pub mod cli;
pub mod config;
pub mod interactive;

pub mod claude_settings;
pub mod utils;

// Re-export commonly used types and functions for easier importing
pub use crate::cli::completion::{
    generate_aliases, generate_completion, list_aliases_for_completion,
};
pub use crate::cli::main::run;