1//! Git integration for safety checks 2//! 3//! Provides functionality to detect uncommitted changes and protect 4//! users from accidentally deleting unsaved work. 5 6mod status; 7mod protection; 8 9pub use status::*; 10pub use protection::*;