| 44 | } |
| 45 | |
| 46 | export interface ConnectorModule { |
| 47 | load: () => Promise<unknown>; |
| 48 | name: string; |
| 49 | driver: string; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Load connector modules, gracefully skipping any whose driver package |
nothing calls this directly
no outgoing calls
no test coverage detected