remove redundant code

This commit is contained in:
2025-04-01 23:14:37 -04:00
parent 251c2d4c19
commit 132398cd53

View File

@@ -99,21 +99,8 @@ impl Card {
} }
} }
#[derive(Debug, poise::Modal)]
struct BlackJackAction {}
#[poise::command(slash_command)]
pub async fn modal(ctx: poise::ApplicationContext<'_, Data, Error>) -> Result<(), Error> {
use poise::Modal as _;
let data = BlackJackAction::execute(ctx).await?;
println!("Got data: {:?}", data);
Ok(())
}
/// Blackjack! /// Blackjack!
#[poise::command(slash_command, prefix_command, aliases("bj", "21"))] #[poise::command(slash_command, prefix_command, aliases("jackblack", "bj", "21"))]
pub async fn blackjack(ctx: Context<'_>, amount: String) -> Result<(), Error> pub async fn blackjack(ctx: Context<'_>, amount: String) -> Result<(), Error>
{ {
let mut tx = ctx.data().database.begin().await?; let mut tx = ctx.data().database.begin().await?;
@@ -305,7 +292,7 @@ pub async fn blackjack(ctx: Context<'_>, amount: String) -> Result<(), Error>
_ => { _ => {
ctx.reply("Invalid interaction response.").await?; ctx.reply("Invalid interaction response.").await?;
return Ok(()); return Ok(());
}, }
} }
} }