mirror of
https://github.com/marcogll/telegram_expenses_controller.git
synced 2026-01-13 13:25:15 +00:00
10 lines
329 B
Python
10 lines
329 B
Python
"""
|
|
Handler for the /status command.
|
|
"""
|
|
from telegram import Update
|
|
from telegram.ext import ContextTypes
|
|
|
|
async def status(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
|
|
"""Shows the status of the last processed expense (stub)."""
|
|
await update.message.reply_text("Status command is not yet implemented.")
|