claude-code-switcher 0.14.1

A CLI tool for managing Claude Code setting snapshots and templates
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Interactive selection helpers (inquire-based).
//!
//! The old custom crossterm full-screen Selector was removed in favor of a
//! single, consistent prompt style via `inquire`.

pub mod confirmation;
pub mod credential;
pub mod error;
pub mod snapshot;
pub mod template;

// Re-export commonly used types
pub use confirmation::ConfirmationService;
pub use error::{SelectorError, SelectorResult};