26 lines
703 B
Rust
26 lines
703 B
Rust
use crate::{
|
|
message_utils::{send_message, MessageTarget},
|
|
BotResult,
|
|
};
|
|
use log::info;
|
|
use teloxide::{types::Message, Bot};
|
|
|
|
pub async fn handle_my_bids(bot: Bot, 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! 🏗️";
|
|
|
|
info!(
|
|
"User {} ({}) checked their bids",
|
|
msg.chat.username().unwrap_or("unknown"),
|
|
msg.chat.id
|
|
);
|
|
|
|
send_message(&bot, target, response, None).await?;
|
|
Ok(())
|
|
}
|