From 6cdbba3e559efaea5516af6a78d594a19593203d Mon Sep 17 00:00:00 2001 From: timerzz Date: Tue, 3 Sep 2024 14:41:20 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E6=B7=BB=E5=8A=A0dict?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- structs/utils/dict.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 structs/utils/dict.go diff --git a/structs/utils/dict.go b/structs/utils/dict.go new file mode 100644 index 0000000..35e4ebc --- /dev/null +++ b/structs/utils/dict.go @@ -0,0 +1,7 @@ +package utils + +type Dict struct { + Key string `json:"key"` + Title string `json:"title"` + Value string `json:"value"` +}