15 lines
317 B
Python
15 lines
317 B
Python
"""
|
|
Job status model for content scheduling.
|
|
"""
|
|
|
|
from enum import Enum
|
|
|
|
class JobStatus(str, Enum):
|
|
"""Enum representing the status of a scheduled job."""
|
|
|
|
PENDING = "pending"
|
|
RUNNING = "running"
|
|
COMPLETED = "completed"
|
|
FAILED = "failed"
|
|
CANCELLED = "cancelled"
|
|
RETRYING = "retrying" |