forked from kate/uniborg
6 lines
98 B
Python
6 lines
98 B
Python
|
from telethon import events
|
||
|
|
||
|
@borg.on(events.NewMessage)
|
||
|
async def asdf(e):
|
||
|
print(e.raw_text)
|