def search_click_handler(m):
    coordinator.send_action(m.chat.id)
    response = processor.handle_search(m)
    coordinator.send_text(response)
def confirm_item_handler(m):
    coordinator.send_action(m.chat.id)
    response = processor.handle_confirm(m)
    coordinator.send_text(response)
def update_item_price_handler(m):
    coordinator.send_action(m.chat.id)
    response = processor.handle_item_price_enter(m)
    coordinator.send_text(response)
def add_item_handler(m):
    coordinator.send_action(m.chat.id)
    response = processor.handle_add_item_click(m)
    coordinator.send_text(response)
def return_back_handler(m):
    coordinator.send_action(m.chat.id)
    response = processor.return_back(m)
    coordinator.send_text(response)
Пример #6
0
def enter_item_location_handler(m):
    coordinator.send_action(m.chat.id)
    response = processor.handle_item_location(m)
    coordinator.send_text(response)