export const ERROR_MESSAGES = {
  UNAUTHENTICATED: 'You are not authenticated',
  UNAUTHORIZED: 'Unauthorized',
  FORBIDDEN: 'Forbidden',
  NOT_FOUND: 'Not found',
  INTERNAL_SERVER_ERROR: 'Internal server error',
  BAD_REQUEST: 'Bad request',
  CONFLICT: 'Conflict',
  UNPROCESSABLE_ENTITY: 'Unprocessable entity',
  INVALID_CREDENTIALS: 'Invalid credentials',
  USER_NOT_FOUND: 'No User found',
};
