From 84b22ba693bcac0ab0b7b654b369d17f45e4fde4 Mon Sep 17 00:00:00 2001 From: sunpriya Date: Sat, 5 Nov 2016 12:41:48 +0530 Subject: [PATCH] Create constants.py --- sunpriya/constants.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sunpriya/constants.py diff --git a/sunpriya/constants.py b/sunpriya/constants.py new file mode 100644 index 0000000..554ff30 --- /dev/null +++ b/sunpriya/constants.py @@ -0,0 +1,10 @@ +API_PATH_PREFIX="/communicatiom" +API_PATH_EMAIL="/email_id" +ESPONSE_MESSAGE_UNAUTHORIZED = "Authentication error occurred" +RESPONSE_MESSAGE_NOT_FOUND = "The requested resource was not found" +RESPONSE_MESSAGE_BAD_REQUEST = "There was a problem with your request" +RESPONSE_MESSAGE_NOT_IMPLEMENTED = "The requested resource is not implemented" + +DB_NAME = "communication-service" + +EMAIL_ID_COLLECTION = "email-Id-collection"