aiogram/CHANGES/894.feature.rst
Alex Root Junior 3b984e703a
Added changelog
2022-04-24 04:15:02 +03:00

7 lines
206 B
ReStructuredText

Added possibility to combine filters or invert result
Example:
.. code-block:: python
Text(text="demo") | Command(commands=["demo"])
MyFilter() & AnotherFilter()
~StateFilter(state='my-state')