prlens 0.1.1

One queue for all your PRs — aggregates GitHub and Bitbucket review requests into a single interactive view
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Library crate root — exposes internal modules for integration tests in tests/.
// The binary entry point (src/main.rs) continues to use `mod` declarations directly.
//
// Integration tests in tests/ can import:
//   use prlens::provider::github::GitHubProvider;
//   use prlens::config::GithubConfig;
//   use prlens::models::ReviewStatus;
//   use prlens::provider::Provider;

pub mod cache;
pub mod cli;
pub mod config;
pub mod display;
pub mod models;
pub mod provider;
pub mod tui;