From 9d8e510c0db6dc1dbc67f75ef28b748b8bed30f7 Mon Sep 17 00:00:00 2001 From: hiroka-wada <47963288+wadda0714@users.noreply.github.com> Date: Tue, 26 Sep 2023 15:50:18 +0900 Subject: [PATCH] add: json tag (#1746) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 和田皓翔 --- config/saasconf.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/saasconf.go b/config/saasconf.go index c1b5daf1..8d219a50 100644 --- a/config/saasconf.go +++ b/config/saasconf.go @@ -7,9 +7,9 @@ import ( // SaasConf is FutureVuls config type SaasConf struct { - GroupID int64 `json:"-"` - Token string `json:"-"` - URL string `json:"-"` + GroupID int64 `json:"GroupID"` + Token string `json:"Token"` + URL string `json:"URL"` } // Validate validates configuration