pub(crate) mod add;
pub(crate) mod checkout;
pub(crate) mod commit;
pub(crate) mod fsck;
pub(crate) mod init;
pub(crate) mod log;
pub(crate) mod recover;
pub(crate) mod rm;
pub(crate) mod show;
pub(crate) mod status;
pub(crate) fn test_crash_at(point: &str) {
if cfg!(debug_assertions)
&& std::env::var("NEOENGRAM_TEST_CRASH_AT").is_ok_and(|configured| configured == point)
{
eprintln!("test crash at {point}");
std::process::exit(86);
}
}