gitent_core/lib.rs
1//! # gitent-core
2//!
3//! Core library for gitent - change tracking and storage for AI agent changes.
4//!
5//! This crate provides the fundamental data structures and database operations
6//! for tracking file system changes, commits, and rollbacks.
7
8pub mod diff;
9pub mod error;
10pub mod models;
11pub mod storage;
12
13pub use error::{Error, Result};
14pub use models::{Change, ChangeType, Commit, CommitInfo, Session};
15pub use storage::Storage;