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
16
17
18
use extern::burgundy;

pub mod path;

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

impl GithubGetReposOwnerRepoContents {
    pub fn path(
        self,
        path: &str,
    ) -> path::GithubGetReposOwnerRepoContentsPath {
        path::GithubGetReposOwnerRepoContentsPath {
            path: self.path.push(&path),
        }
    }
}