From e50fd5fa29d4aa3055adb2b2e297f784e9444fe5 Mon Sep 17 00:00:00 2001 From: wenzl Date: Wed, 25 Oct 2017 10:42:33 +0800 Subject: [PATCH] update readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f7077d5..3eaca1a 100644 --- a/README.md +++ b/README.md @@ -514,10 +514,10 @@ fmt.Println(cfg) ```go type Config struct { - AppID string - TimeStamp int64 - NonceStr string - Signature string + AppID string `json:"app_id"` + Timestamp int64 `json:"timestamp"` + NonceStr string `json:"nonce_str"` + Signature string `json:"signature"` } ```