feat: Add MINUTELY recurrence type and enhance scheduler handling

This commit is contained in:
JSC
2025-09-13 23:44:20 +02:00
parent 92571f4de9
commit e8f979c137
2 changed files with 60 additions and 23 deletions

View File

@@ -31,6 +31,7 @@ class RecurrenceType(str, Enum):
"""Recurrence patterns."""
NONE = "none" # One-shot task
MINUTELY = "minutely"
HOURLY = "hourly"
DAILY = "daily"
WEEKLY = "weekly"