comp-tg/src/events/inlineQuery.lua

9 lines
301 B
Lua
Raw Normal View History

2021-08-15 17:01:35 +00:00
return function(C, api, q)
2022-01-18 15:25:18 +00:00
api.inline
:answer(q.id, api.inline.result(
'photo', '1',
'https://cdn.discordapp.com/attachments/871474214270554124/876506659311202395/unknown.png'
):thumb 'https://cdn.discordapp.com/attachments/871474214270554124/876506659311202395/unknown.png'
)
2021-08-15 17:01:35 +00:00
end