mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-05 01:12:55 +01:00
13 lines
400 B
Python
13 lines
400 B
Python
|
from library.telegram.base import RequestContext
|
||
|
from telethon import events
|
||
|
|
||
|
from .base import BaseCallbackQueryHandler
|
||
|
|
||
|
|
||
|
class NoopHandler(BaseCallbackQueryHandler):
|
||
|
filter = events.CallbackQuery(pattern='^/noop$')
|
||
|
|
||
|
async def handler(self, event: events.ChatAction, request_context: RequestContext):
|
||
|
request_context.statbox(action='start', mode='noop')
|
||
|
await event.answer()
|