diff --git a/config.go b/config.go index c30ae2f..ee5cce9 100644 --- a/config.go +++ b/config.go @@ -1,6 +1,6 @@ package mlflow type Config struct { - ApiURI string - IgnoreSSL bool + ApiURI string `json:"apiUrl,omitempty" yaml:"apiUri,omitempty"` + IgnoreSSL bool `json:"ignoreSSL,omitempty" yaml:"ignoreSSL,omitempty"` }