mirror of
https://github.com/marcogll/telegram_expenses_controller.git
synced 2026-01-13 13:25:15 +00:00
feat: Implement core application structure, AI extraction, persistence, and Telegram bot modules with updated configuration and dependencies.
This commit is contained in:
9
app/modules/status.py
Normal file
9
app/modules/status.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""
|
||||
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.")
|
||||
Reference in New Issue
Block a user