8 lines
248 B
Python
Executable File
8 lines
248 B
Python
Executable File
from enum import Enum
|
|
|
|
|
|
class ScheduleJobLocker(Enum):
|
|
REFRESH_SHAREPOINT_CONTENT_JOB_LOCKER = "analyze_sharepoint_content_job"
|
|
CLEANUP_DOCUMENT_JOB_LOCKER = "cleanup_document_job"
|
|
BACKFILL_PHOTO_ID_JOB_LOCKER = "backfill_photo_id_job"
|