use anyhow::Result;
use filthy_rich::{PresenceRunner, types::Activity};
#[tokio::main]
async fn main() -> Result<()> {
let mut runner = PresenceRunner::new("1463450870480900160");
let activity = Activity::new()
.name("cool app name")
.details("Something?")
.state("Probably~")
.build();
let client = runner.run(true).await?;
client.set_activity(activity).await?;
runner.wait().await?;
Ok(())
}