Source code for eventify.tracking.constants

"""
Eventify Tracking Constants
"""
import os


EVENT_TRACKING_HOST = os.getenv('EVENT_TRACKING_HOST', 'localhost')


[docs]class EventState(object): """ Event States """ started = 'STARTED' inflight = 'IN-FLIGHT' completed = 'COMPLETED'