Source code for platypush.message.event.application
from platypush.message.event import Event
[docs]
class ApplicationStartedEvent(Event):
"""
Event triggered when the application has started and all the backends have been registered
"""
[docs]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# vim:sw=4:ts=4:et: