| 3 | import { ZodiosPlugin } from "../../src/index"; |
| 4 | |
| 5 | export interface ApiKeyPluginConfig { |
| 6 | getApiKey: () => Promise<string>; |
| 7 | } |
| 8 | |
| 9 | export function pluginApiKey(provider: ApiKeyPluginConfig): ZodiosPlugin { |
| 10 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected