mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-21 19:58:17 +00:00
9 lines
196 B
Python
9 lines
196 B
Python
|
from pagermaid.listener import listener
|
||
|
|
||
|
@listener(is_plugin=True, outgoing=True, ignore_edited=False)
|
||
|
async def ok_true(context):
|
||
|
try:
|
||
|
await context.delete()
|
||
|
except:
|
||
|
pass
|