change
This commit is contained in:
parent
be6e7ecb9c
commit
ab2c397aad
13
driver/filters.py
Normal file
13
driver/filters.py
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
from pyrogram import filters
|
||||||
|
from typing import List, Union
|
||||||
|
from config import COMMAND_PREFIXES
|
||||||
|
|
||||||
|
|
||||||
|
other_filters = filters.group & ~filters.edited & ~filters.via_bot & ~filters.forwarded
|
||||||
|
other_filters2 = (
|
||||||
|
filters.private & ~filters.edited & ~filters.via_bot & ~filters.forwarded
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def command(commands: Union[str, List[str]]):
|
||||||
|
return filters.command(commands, COMMAND_PREFIXES)
|
Loading…
Reference in New Issue
Block a user