Files
netbird/management/client/rest/options.go
2025-05-09 08:47:22 +01:00

12 lines
165 B
Go

package rest
import "net/http"
type option func(*Client)
func WithHttpClient(client *http.Client) option {
return func(c *Client) {
c.httpClient = client
}
}