ai_meeting.py 295 B

123456
  1. from app.errors.base import BaseError
  2. AIMeetingNotFound = BaseError(message="AI Meeting not found", code=404)
  3. AIMeetingMinutesNotFound = BaseError(message="AI Meeting Minutes not found", code=404)
  4. AIMeetingConversationNotFound = BaseError(message="AI Meeting Conversation not found", code=404)