//! # rung-github
//!
//! GitHub API integration for Rung, providing PR management
//! and CI status fetching capabilities.
//!
//! # Architecture
//!
//! The crate provides both a concrete [`GitHubClient`] implementation and
//! a [`GitHubApi`] trait for dependency injection and testing.
//!
//! # Security
//!
//! Authentication tokens are stored using `SecretString` which automatically
//! zeroizes memory when dropped, reducing credential exposure in memory dumps.
pub use Auth;
pub use GitHubClient;
pub use ;
pub use GitHubApi;
// Re-export SecretString for constructing Auth::Token
pub use SecretString;
pub use ;