diff --git a/novu/constants.py b/novu/constants.py index b19438f1..849a84bf 100644 --- a/novu/constants.py +++ b/novu/constants.py @@ -1,5 +1,6 @@ -"""This module is used to gather all constants and magic number used in the Novu client.""" +"""This module is used to gather all constants and magic numbers used in the Novu client.""" +# API Endpoints CHANGES_ENDPOINT = "/v1/changes" ENVIRONMENTS_ENDPOINT = "/v1/environments" EVENTS_ENDPOINT = "/v1/events/trigger" @@ -16,5 +17,7 @@ TENANTS_ENDPOINT = "/v1/tenants" TOPICS_ENDPOINT = "/v1/topics" BLUEPRINTS_ENDPOINT = "/v1/blueprints" +WORKFLOW_ENDPOINT = "/v1/workflows" +# Datetime Format DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%f%z"