1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Reachable installation ownership, update, and uninstall behavior. pub(crate) mod commands; pub(crate) mod installation; pub(crate) mod purge; pub(crate) mod standalone; #[cfg(test)] #[path = "installation_tests.rs"] mod installation_tests; #[cfg(test)] #[path = "purge_tests.rs"] mod purge_tests;