diff --git a/src/main.rs b/src/main.rs index b00554c..e4372ae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,6 +6,7 @@ mod queue; use commands::*; use openai::set_key; +use songbird::SerenityInit; use tracing_subscriber::{fmt, prelude::*, EnvFilter}; use std::{env, sync::Arc}; @@ -87,6 +88,7 @@ async fn main() -> Result<()> { let client = serenity::ClientBuilder::new(token, intents) .framework(framework) + .register_songbird() .await? .start() .await?;