This repository has been archived on 2024-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
moderator-bot/handlers/channels/channels_handler.py

9 lines
211 B
Python
Raw Normal View History

from load import dp,types, bot
from config import group_id
2022-08-07 04:45:35 -04:00
# TODO: channel post forward in chat
@dp.channel_post_handler()
async def channel_handler(message:types.Message):
await message.forward(group_id)