summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorPaul Woolcock <paul@woolcock.us>2018-10-03 05:12:37 -0400
committerPaul Woolcock <paul@woolcock.us>2018-10-10 10:28:22 -0400
commit4dd40422b3de11aaadcfc600317c0df3556b38f5 (patch)
tree88ee4f0549421ce8c35278df8dc0df146987571c /examples
parentd524a64bfd65d789b0dd54434a848fccba505471 (diff)
feat(api): shortcut methods for following & followers
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/follows_me.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/follows_me.rs b/examples/follows_me.rs
new file mode 100755
index 0000000..c423b1c
--- /dev/null
+++ b/examples/follows_me.rs
@@ -0,0 +1,25 @@
+#![cfg_attr(not(feature = "toml"), allow(dead_code))]
+#![cfg_attr(not(feature = "toml"), allow(unused_imports))]
+mod register;
+
+use register::MastodonClient;
+use std::error;
+
+#[cfg(feature = "toml")]
+fn main() -> Result<(), Box<error::Error>> {
+ let mastodon = register::get_mastodon_data()?;
+ for account in mastodon.follows_me()?.items_iter() {
+ println!("{}", account.acct);
+ }
+
+ Ok(())
+}
+
+#[cfg(not(feature = "toml"))]
+fn main() {
+ println!(
+ "examples require the `toml` feature, run this command for this example:\n\ncargo run \
+ --example print_your_profile --features toml\n"
+ );
+}
+