| 30 | ) |
| 31 | |
| 32 | type OpenCodeProvider struct { |
| 33 | serverUrl string |
| 34 | apiKey string |
| 35 | client *http.Client |
| 36 | } |
| 37 | |
| 38 | func NewOpenCodeProvider(serverUrl string, apiKey string) (*OpenCodeProvider, error) { |
| 39 | if serverUrl == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected