Files
pawctioneer-bot/src/commands/my_bids.rs
2025-09-05 21:48:52 +00:00

24 lines
702 B
Rust

use crate::{message_utils::MessageTarget, App, BotResult};
use log::info;
use teloxide::types::Message;
pub async fn handle_my_bids(app: App, msg: Message, target: MessageTarget) -> BotResult {
let response = "🎯 My Bids (Coming Soon)\n\n\
Here you'll be able to view:\n\
• Your active bids\n\
• Bid status (winning/outbid)\n\
• Proxy bid settings\n\
• Auction end times\n\n\
Feature in development! 🏗️"
.to_string();
info!(
"User {} ({}) checked their bids",
msg.chat.username().unwrap_or("unknown"),
msg.chat.id
);
app.bot.send_html_message(target, response, None).await?;
Ok(())
}