24 lines
647 B
Rust
24 lines
647 B
Rust
use crate::{App, BotResult};
|
|
use log::info;
|
|
use teloxide::types::Message;
|
|
|
|
pub async fn handle_settings(app: App, msg: Message) -> BotResult {
|
|
let response = "⚙️ Settings (Coming Soon)\n\n\
|
|
Here you'll be able to configure:\n\
|
|
• Notification preferences\n\
|
|
• Language settings\n\
|
|
• Default bid increments\n\
|
|
• Outbid alerts\n\n\
|
|
Feature in development! 🛠️"
|
|
.to_string();
|
|
|
|
info!(
|
|
"User {} ({}) accessed settings",
|
|
msg.chat.username().unwrap_or("unknown"),
|
|
msg.chat.id
|
|
);
|
|
|
|
app.bot.send_html_message(response, None).await?;
|
|
Ok(())
|
|
}
|