1//! GitHub provider implementation. 2//! 3//! Supports both github.com and GitHub Enterprise Server. 4 5mod client; 6mod pagination; 7 8pub use client::GitHubProvider; 9 10/// Default GitHub API URL 11pub const GITHUB_API_URL: &str = "https://api.github.com";