forked from platypush/platypush
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
from platypush.message.event import Event
|
|
|
|
|
|
class NgrokEvent(Event):
|
|
"""
|
|
``ngrok`` base event.
|
|
"""
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
class NgrokProcessStartedEvent(NgrokEvent):
|
|
"""
|
|
Event triggered when the ``ngrok`` process is started.
|
|
"""
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
class NgrokTunnelStartedEvent(NgrokEvent):
|
|
"""
|
|
Event triggered when a tunnel is started.
|
|
"""
|
|
def __init__(self, *args, name: str, url: str, protocol: str, **kwargs):
|
|
super().__init__(*args, name=name, url=url, protocol=protocol, **kwargs)
|
|
|
|
|
|
class NgrokTunnelStoppedEvent(NgrokEvent):
|
|
"""
|
|
Event triggered when a tunnel is stopped.
|
|
"""
|
|
def __init__(self, *args, name: str, url: str, protocol: str, **kwargs):
|
|
super().__init__(*args, name=name, url=url, protocol=protocol, **kwargs)
|
|
|
|
|
|
class NgrokProcessStoppedEvent(NgrokEvent):
|
|
"""
|
|
Event triggered when the ngrok process is stopped.
|
|
"""
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|