github-client 0.1.0

Github Client
1
2
3
4
5
6
7
8
9
10
#[derive(Deserialize, Debug)]
pub struct Comment {
    body: String,
}

impl Comment {
    pub fn body(&self) -> &str {
        &self.body
    }
}