mlflow-client-go/config.go

7 lines
181 B
Go
Raw Permalink Normal View History

2024-05-15 08:14:29 +00:00
package mlflow
type Config struct {
2024-05-21 19:07:21 +00:00
ApiURI string `json:"apiUrl,omitempty" yaml:"apiUri,omitempty"`
IgnoreSSL bool `json:"ignoreSSL,omitempty" yaml:"ignoreSSL,omitempty"`
2024-05-15 08:14:29 +00:00
}