| 358 | |
| 359 | @dataclass |
| 360 | class CronJob: |
| 361 | id: str |
| 362 | cron: str # "0 9 * * *" |
| 363 | prompt: str # message to inject when fired |
| 364 | recurring: bool # True = recurring, False = one-shot |
| 365 | durable: bool # True = persist to disk |
| 366 | |
| 367 | |
| 368 | scheduled_jobs: dict[str, CronJob] = {} |
no outgoing calls
no test coverage detected