mastodon-async/examples/follow_profile.rs

37 lines
1.0 KiB
Rust
Raw Permalink Normal View History

2022-11-27 14:44:43 +00:00
#![cfg_attr(not(feature = "toml"), allow(dead_code))]
#![cfg_attr(not(feature = "toml"), allow(unused_imports))]
mod register;
2022-12-23 15:09:33 +00:00
use mastodon_async::Result;
2022-11-27 14:44:43 +00:00
#[cfg(feature = "toml")]
async fn run() -> Result<()> {
2023-01-29 13:59:40 +00:00
use mastodon_async::entities::AccountId;
2022-12-23 15:09:33 +00:00
let mastodon = register::get_mastodon_data().await?;
2022-11-27 14:44:43 +00:00
let input = register::read_line("Enter the account id you'd like to follow: ")?;
let account = AccountId::new(input.trim());
let new_follow = mastodon.follow(&account).await?;
2022-11-27 14:44:43 +00:00
println!("{:#?}", new_follow);
Ok(())
}
#[cfg(all(feature = "toml", feature = "mt"))]
#[tokio::main]
async fn main() -> Result<()> {
run().await
}
#[cfg(all(feature = "toml", not(feature = "mt")))]
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
run().await
}
2022-11-27 14:44:43 +00:00
#[cfg(not(feature = "toml"))]
fn main() {
println!(
"examples require the `toml` feature, run this command for this example:\n\ncargo run \
--example follow_profile --features toml,mt\n"
2022-11-27 14:44:43 +00:00
);
}