mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
10 lines
291 B
Go
10 lines
291 B
Go
package options
|
|
|
|
import "net/http"
|
|
|
|
type SearchRepoOptions struct {
|
|
Repo string `example:"https://charts.gitlab.io/"`
|
|
Client *http.Client `example:"&http.Client{Timeout: time.Second * 10}"`
|
|
Chart string `example:"my-chart"`
|
|
UseCache bool `example:"false"`
|
|
}
|