use ;
use ;
/// Serves Git repositories using WebDAV protocol.
///
/// # Arguments
/// * `path` - Directory path containing Git repos to serve
/// * `addr` - IPv4 address to bind server to
/// * `port` - Port number to listen on
///
/// # Example
/// ```rust
/// serve_repositories("./repos", &Ipv4Addr::LOCALHOST, &8080).await;
/// ```
pub async