hashtree_git/lib.rs
1//! Git smart HTTP protocol implementation for hashtree
2//!
3//! Implements the git smart HTTP protocol allowing hashtree to serve as a git remote.
4//! Supports both fetch (git-upload-pack) and push (git-receive-pack) operations.
5
6pub mod error;
7pub mod object;
8pub mod refs;
9pub mod storage;
10pub mod protocol;
11pub mod pack;
12pub mod http;
13
14pub use error::{Error, Result};
15pub use storage::GitStorage;