You are developing a Telegram bot, and you need to send messages to a single chat using its chat ID. However, you don't want to pass the chatId as an explicit parameter in every handler function. To achieve a more elegant solution, you decided to make the chatId an implicit parameter. For example:
given chatId: Int = 50
However, you should consider refactoring the code of handler1 to make use of the implicit chatId parameter.