local api = require("telegram-bot-lua.core").configure(TOKEN)
function api.on_message(message)
if message.text and message.text:match("ping") then
local keyboard = api.keyboard():row(
api.row():url_button(
"aboba",
"https://google.com"
)
)
api.send_message(
message.chat.id,
"pong", keyboard)
end
end
here's my attempt:
i get this error: