gitapi-rs 0.1.2

git api in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use curl::easy::{List};

pub struct Header {}
impl Header {
    pub fn get() -> List {
        let mut list = List::new();
        list.append("User-Agent: GITAPI-RS").unwrap();

        list
    }
}