git_http_backend/
config.rs

1use std::path::PathBuf;
2
3/// git http server config
4#[derive(Clone,Debug)]
5pub struct GitHttpConfig {
6    /// git repository root
7    pub root: PathBuf,
8    /// git http server port
9    pub port: u16,
10    /// git http server address
11    pub addr: String,
12}