| 50 | } |
| 51 | |
| 52 | interface CronJobCardProps { |
| 53 | job: CronJob; |
| 54 | onToggle: (id: string, enabled: boolean) => void; |
| 55 | onSavePrompt: (id: string, prompt: string) => Promise<void>; |
| 56 | onDelete: (id: string) => void; |
| 57 | onRun: (id: string) => void; |
| 58 | } |
| 59 | |
| 60 | const AGENT_EMOJIS: Record<string, string> = { |
| 61 | main: "🤖", |
nothing calls this directly
no outgoing calls
no test coverage detected