mastodon-async/examples/print_your_profile.rs

25 lines
593 B
Rust
Raw 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-22 17:29:22 +00:00
use elefren::Result;
2022-11-27 14:44:43 +00:00
#[cfg(feature = "toml")]
2022-12-22 17:29:22 +00:00
#[tokio::main]
async fn main() -> Result<()> {
let mastodon = register::get_mastodon_data().await?;
let you = mastodon.verify_credentials().await?;
2022-11-27 14:44:43 +00:00
println!("{:#?}", you);
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"
);
}