From 20e43fc5a556e4fe720fcc313c7fddf9a600e6d9 Mon Sep 17 00:00:00 2001 From: timerzz Date: Tue, 3 Sep 2024 14:44:55 +0800 Subject: [PATCH] =?UTF-8?q?feat=20dict=E7=9A=84value=E6=94=B9=E4=B8=BAany?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- structs/utils/dict.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structs/utils/dict.go b/structs/utils/dict.go index 35e4ebc..ebbef6b 100644 --- a/structs/utils/dict.go +++ b/structs/utils/dict.go @@ -3,5 +3,5 @@ package utils type Dict struct { Key string `json:"key"` Title string `json:"title"` - Value string `json:"value"` + Value any `json:"value"` }