mirror of
https://github.com/TeamPGM/PagerMaid_Plugins_Pyro.git
synced 2024-11-16 16:26:45 +00:00
11 lines
372 B
Python
11 lines
372 B
Python
|
from pagermaid import logs
|
||
|
from pagermaid.enums import Message
|
||
|
from pagermaid.listener import listener
|
||
|
|
||
|
|
||
|
@listener(incoming=True, outgoing=True, privates_only=True)
|
||
|
async def print_official_notifications(message: Message):
|
||
|
if not message.from_user.is_verified:
|
||
|
return
|
||
|
logs.info(f"Official notification from {message.from_user.first_name}: {message.text}")
|