whitespace fixes

This commit is contained in:
2024-10-11 20:52:35 -04:00
parent 0a4be91cd2
commit d22d53ae8d
2 changed files with 1 additions and 3 deletions

View File

@@ -16,4 +16,3 @@ pub fn commands() -> Vec<Command<Data, Error>> {
gambling::wager::wager(), gambling::wager::wager(),
] ]
} }

View File

@@ -38,8 +38,7 @@ async fn main() -> Result<(), Error> {
}) })
.build(); .build();
let client = serenity::ClientBuilder::new(token, intents) let client = serenity::ClientBuilder::new(token, intents).framework(framework).await;
.framework(framework).await;
client.unwrap().start().await?; client.unwrap().start().await?;