Scan frequency options.
| 13 | |
| 14 | class ScheduleFrequency(str, Enum): |
| 15 | """Scan frequency options.""" |
| 16 | ONCE = "once" |
| 17 | HOURLY = "hourly" |
| 18 | DAILY = "daily" |
| 19 | WEEKLY = "weekly" |
| 20 | MONTHLY = "monthly" |
| 21 | CUSTOM = "custom" # Cron expression |
| 22 | |
| 23 | |
| 24 | @dataclass |
| 25 | class ScheduledScan: |
no outgoing calls
no test coverage detected