mirror of
https://github.com/portainer/portainer.git
synced 2025-07-18 21:09:40 +02:00
15 lines
375 B
Go
15 lines
375 B
Go
package options
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
)
|
|
|
|
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"`
|
|
Registry *portainer.Registry
|
|
}
|