(provider: string)
| 3 | import type { Hooks } from "@opencode-ai/plugin" |
| 4 | |
| 5 | function hookWithAuth(provider: string): Hooks { |
| 6 | return { |
| 7 | auth: { |
| 8 | provider, |
| 9 | methods: [], |
| 10 | }, |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | function hookWithoutAuth(): Hooks { |
| 15 | return {} |
no outgoing calls
no test coverage detected