76ba500417
CI / docker (push) Successful in 2m4s
OpenAI-compatible AI gateway with Vue admin UI, multi-provider egress, ingress key governance, monitoring, and security controls. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
196 B
Go
12 lines
196 B
Go
package provider
|
|
|
|
import "net/http"
|
|
|
|
type HTTPClientWrapper struct {
|
|
Client *http.Client
|
|
}
|
|
|
|
func NewHTTPClientWrapper() *HTTPClientWrapper {
|
|
return &HTTPClientWrapper{Client: NewHTTPClient()}
|
|
}
|