poise 0.4 -> 0.5.5

This commit is contained in:
Elnu 2023-06-10 12:45:05 -07:00
parent e370b29f86
commit faf74e7c3f
6 changed files with 16 additions and 16 deletions

View file

@ -71,7 +71,7 @@ async fn main() {
| GatewayIntents::MESSAGE_CONTENT
| GatewayIntents::GUILDS,
)
.user_data_setup(move |_ctx, _ready, _framework| Box::pin(async move { Ok(Data {}) }));
.setup(move |_ctx, _ready, _framework| Box::pin(async move { Ok(Data {}) }));
framework.run().await.unwrap();
}