| 14 | } |
| 15 | |
| 16 | export interface CrawlerStatus { |
| 17 | status: 'idle' | 'running' | 'stopping' | 'error' |
| 18 | platform: string | null |
| 19 | crawler_type: string | null |
| 20 | started_at: string | null |
| 21 | error_message: string | null |
| 22 | } |
| 23 | |
| 24 | export interface LogEntry { |
| 25 | id: number |
nothing calls this directly
no outgoing calls
no test coverage detected