Source code for duct.outputs.null

"""
.. module:: null
   :synopsis: Null event output. Does nothing

.. moduleauthor:: Colin Alston <colin@tamvera.com>
"""
from duct.objects import Output


[docs] class Null(Output): """Null output throws your events away """
[docs] async def eventsReceived(self, events): return