cc-switch-tui 0.2.2

All-in-One Assistant for Claude Code, Codex, Gemini, OpenCode, OpenClaw & Hermes
Documentation
//! Data Access Object layer
//!
//! Database access operations for each domain

pub mod failover;
pub mod mcp;
pub mod prompts;
pub mod providers;
pub mod providers_seed;
pub mod proxy;
pub mod settings;
pub mod skills;
pub mod stream_check;
// NOTE(cc-switch-tui): keep schema aligned with upstream, but only compile the DAOs
// that are currently supported by the CLI build. The remaining upstream DAOs are
// intentionally left unreferenced (and thus not compiled) until the corresponding
// services/types land in this repo.

// 所有 DAO 方法都通过 Database impl 提供,无需单独导出
// 导出 FailoverQueueItem 供外部使用
pub use failover::FailoverQueueItem;