rung_github/
lib.rs

1//! # rung-github
2//!
3//! GitHub API integration for Rung, providing PR management
4//! and CI status fetching capabilities.
5
6mod auth;
7mod client;
8mod error;
9mod types;
10
11pub use auth::Auth;
12pub use client::GitHubClient;
13pub use error::{Error, Result};
14pub use types::{
15    CheckRun, CheckStatus, CreateComment, CreatePullRequest, IssueComment, MergeMethod,
16    MergePullRequest, MergeResult, PullRequest, PullRequestState, UpdateComment, UpdatePullRequest,
17};