diff --git a/src/main.rs b/src/main.rs index e3f24a7..df2bb9a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ -mod commands; - use poise::serenity_prelude as serenity; +mod commands; + struct Data {} type Error = Box; @@ -29,6 +29,9 @@ async fn main() { ), ) .await?; // Update slash commands in GID + + ctx.set_activity(serenity::Activity::playing("SMITE")).await; + Ok(Data {}) }) });