platypush/platypush/message/event/application.py

15 lines
300 B
Python

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