//! Git storage adapter layer for Auths.
//!
//! Implements the storage port traits defined in `auths-core` using `libgit2`.
//! Each adapter wraps a bare Git repository and provides typed access to
//! identity data stored as Git objects.
//!
//! ## Modules
//!
//! - [`GitBlobStore`] — content-addressable blob storage
//! - [`GitRefStore`] — ref-based key-value storage for identity state
//! - [`GitEventLog`] — append-only event log backed by Git refs
//! - [`audit`] — audit log helpers for registry operations
pub use GitBlobStore;
pub use GitEventLog;
pub use GitRefStore;
pub use GitRepo;