azure/durable_functions/constants.py (8 lines of code) (raw):

"""Constants used to determine the local running context.""" DEFAULT_LOCAL_HOST: str = 'localhost:7071' DEFAULT_LOCAL_ORIGIN: str = f'http://{DEFAULT_LOCAL_HOST}' DATETIME_STRING_FORMAT = '%Y-%m-%dT%H:%M:%S.%fZ' HTTP_ACTION_NAME = 'BuiltIn::HttpActivity' ORCHESTRATION_TRIGGER = "orchestrationTrigger" ACTIVITY_TRIGGER = "activityTrigger" ENTITY_TRIGGER = "entityTrigger" DURABLE_CLIENT = "durableClient"