Skip to main content

git_internal/protocol/
mod.rs

1//! Git smart-protocol façade that re-exports core traits, transport adapters, capability types, and
2//! helpers so embedders can speak Git over HTTP/SSH or custom transports with minimal plumbing.
3
4pub mod core;
5pub mod http;
6pub mod pack;
7pub mod smart;
8pub mod ssh;
9pub mod types;
10pub mod utils;
11
12// Re-export main interfaces
13pub use core::{AuthenticationService, GitProtocol, RepositoryAccess};
14
15pub use types::*;