claude-code-switcher 0.11.5

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
15
16
17
18
//! Unified selector framework
//!
//! Provides a consistent interface for interactive selection across different
//! types of items (credentials, snapshots, templates, etc.).

pub mod base;
pub mod confirmation;
pub mod error;

// Concrete selector implementations
pub mod credential;
pub mod snapshot;
pub mod template;

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