//! # githubdw
//!
//! A local, SQLite-based data warehouse for GitHub repositories.
//!
//! `githubdw` syncs pull requests (with reviews, comments, file diffs, and
//! check runs) and issues (with labels, milestones, and comments) from GitHub
//! into a star-schema SQLite database, then provides querying, metrics,
//! fulltext search (FTS5 trigram), and an MCP server for AI assistants.
//!
//! Data is fetched via the `gh` CLI as a subprocess, so authentication is
//! entirely delegated to `gh auth`. GitHub Enterprise works via `GH_HOST`.
/// AI summarization of pull requests (opt-in via the `summaries` feature).
pub use ;
pub use GithubDW;
pub use Period;
pub use ;