| 117 | type ProviderID = keyof typeof providers; |
| 118 | |
| 119 | interface SyncOptions { |
| 120 | dryRun?: boolean; |
| 121 | newOnly?: boolean; |
| 122 | } |
| 123 | |
| 124 | export async function syncProviderByID(id: ProviderID, options: SyncOptions = {}) { |
| 125 | return syncProvider(providers[id], options); |
nothing calls this directly
no outgoing calls
no test coverage detected