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