github-api 0.4.3

Github v3 API bindings for Rust
1
2
3
4
5
6
7
8
9
10
11
12
use extern::burgundy;
use types;

pub struct GithubGetReposOwnerRepoCommitsPath {
    crate path: burgundy::Path,
}

impl GithubGetReposOwnerRepoCommitsPath {
    pub fn run(self) -> burgundy::Result<Vec<types::Commit>> {
        self.path.execute_as_json::<(), Vec<types::Commit>>(None)
    }
}