github-api 0.4.3

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

pub mod repos;

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

impl GithubGetOrgsOwner {
    pub fn repos(self) -> repos::GithubGetOrgsOwnerRepos {
        repos::GithubGetOrgsOwnerRepos {
            path: self.path.push(&"repos"),
        }
    }
}