added struct tags to config

This commit is contained in:
Pavel Dmitriev 2024-05-21 22:07:21 +03:00
parent c7aa20f7f1
commit d99e197d4b
1 changed files with 2 additions and 2 deletions

View File

@ -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"`
}