octorus 0.5.5

A TUI tool for GitHub PR review, designed for Helix editor users
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod client;
pub mod comment;
mod pr;

// Explicit re-exports - only export what is actually used
pub use client::{detect_repo, gh_command, DetectRepoError};
pub use comment::{create_multiline_review_comment, create_reply_comment, create_review_comment};
pub use pr::{
    fetch_changed_files, fetch_files_viewed_state, fetch_pr, fetch_pr_diff, fetch_pr_list,
    fetch_pr_list_with_offset, mark_file_as_viewed, submit_review, unmark_file_as_viewed, Branch,
    ChangedFile, Label, PrListPage, PrStateFilter, PullRequest, PullRequestSummary, User,
};