mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-06 15:46:47 +01:00
15 lines
303 B
Python
15 lines
303 B
Python
|
from telethon import Button
|
||
|
|
||
|
|
||
|
def close_button(session_id: str = None):
|
||
|
if session_id:
|
||
|
return Button.inline(
|
||
|
text='✖️',
|
||
|
data=f'/close_{session_id}',
|
||
|
)
|
||
|
else:
|
||
|
return Button.inline(
|
||
|
text='✖️',
|
||
|
data='/close',
|
||
|
)
|