From d99e197d4b2184b8af8c002ed81bfa9bd8e960e7 Mon Sep 17 00:00:00 2001 From: Pavel Dmitriev Date: Tue, 21 May 2024 22:07:21 +0300 Subject: [PATCH] added struct tags to config --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"` }