mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Abandoning `fabro pr list`. Deletes:
- lib/crates/fabro-cli/src/commands/pr/list.rs
- lib/crates/fabro-cli/tests/it/cmd/pr_list.rs
- PrListArgs struct + PrCommand::List variant + dispatch arm + name
- The `client()` accessor + `client` field on ServerSummaryLookup
(`pr list` was the only consumer)
- `### fabro pr list` section in docs/reference/cli.mdx
- `list` row + alias from the `fabro pr --help` snapshot test
Server side untouched: there was no `/pull_requests` endpoint to
remove. Historical changelog and plan docs left as-is — they record
when the command shipped, not its current existence.
Verified: workspace fmt clean, clippy --all-targets -D warnings clean,
cargo nextest run --workspace 4581 passed (down from 4584 by the
3 deleted pr_list tests), 182 skipped.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
74 lines
1 KiB
Rust
74 lines
1 KiB
Rust
mod archive;
|
|
mod artifact_cp;
|
|
mod artifact_list;
|
|
mod attach;
|
|
mod auth;
|
|
mod config;
|
|
mod create;
|
|
mod diff;
|
|
mod discord;
|
|
mod docs;
|
|
mod doctor;
|
|
mod dump;
|
|
mod exec;
|
|
mod fabro;
|
|
mod fork;
|
|
mod graph;
|
|
mod inspect;
|
|
mod install;
|
|
mod json_global;
|
|
mod logs;
|
|
mod model;
|
|
mod model_list;
|
|
mod model_test;
|
|
mod parse;
|
|
mod pr;
|
|
mod pr_close;
|
|
mod pr_create;
|
|
mod pr_merge;
|
|
mod pr_view;
|
|
mod preflight;
|
|
mod provider;
|
|
mod provider_login;
|
|
mod ps;
|
|
mod render_graph;
|
|
mod repo;
|
|
mod repo_deinit;
|
|
mod repo_init;
|
|
mod resume;
|
|
mod rewind;
|
|
mod rm;
|
|
mod run;
|
|
mod runner;
|
|
mod sandbox_cp;
|
|
mod sandbox_preview;
|
|
mod sandbox_ssh;
|
|
mod secret;
|
|
mod secret_list;
|
|
mod secret_rm;
|
|
mod secret_set;
|
|
mod send_analytics;
|
|
mod send_panic;
|
|
mod server_start;
|
|
mod server_status;
|
|
mod server_stop;
|
|
mod start;
|
|
pub(crate) mod support;
|
|
mod system;
|
|
mod system_df;
|
|
mod system_events;
|
|
mod system_info;
|
|
mod system_prune;
|
|
#[cfg(debug_assertions)]
|
|
mod test_panic;
|
|
mod top_level;
|
|
mod unarchive;
|
|
mod uninstall;
|
|
mod upgrade;
|
|
mod validate;
|
|
mod version;
|
|
mod wait;
|
|
mod worker_auth;
|
|
mod workflow;
|
|
mod workflow_create;
|
|
mod workflow_list;
|