from snackfinder import menu from typing import Any, Dict from zulip_bots.lib import BotHandler class AtoomSnackHandler: def usage(self) -> str: return "" def handle_message(self, message: Dict[str, Any], bot_handler: BotHandler) -> None: bot_handler.send_reply(message, menu()) handler_class = AtoomSnackHandler