patholog 1.0.0

Diagnose, explain, clean, and safely repair PATH behavior.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod apply;
mod config;
mod doctor;
mod health;
mod print;
mod resolution;
mod scan;
mod shared;
mod why_not;

pub(crate) use apply::{format_apply_outcome, format_apply_plan};
pub(crate) use config::{format_config_check, format_config_print};
pub(crate) use doctor::format_doctor;
pub(crate) use health::format_health;
pub(crate) use print::format_print;
pub(crate) use resolution::{format_conflicts, format_why};
pub(crate) use scan::format_shell_profile_scan;
pub(crate) use why_not::format_why_not;