enums.py 89 B

1234567
  1. import enum
  2. class SupportedPdfParseMethod(enum.Enum):
  3. OCR = 'ocr'
  4. TXT = 'txt'