Initial commit

This commit is contained in:
Aaron Power
2017-04-10 18:00:07 +01:00
commit 36ae371beb
19 changed files with 685 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#[derive(Deserialize)]
pub struct Relationship {
pub following: bool,
pub followed_by: bool,
pub blocking: bool,
pub muting: bool,
pub requested: bool,
}