1use anyhow::Result;
2use filthy_rich::ipc::DiscordIPC;
3
4#[tokio::main]
5async fn main() -> Result<()> {
6 let mut client = DiscordIPC::new_from("1463450870480900160").await?;
7
8 client.run().await?;
9 client.set_activity("this runs", "forever").await?;
10 client.wait().await?;
11
12 Ok(())
13}