From 58b4ef2d450ab4f25065fa0008b4eb9cc368f8b0 Mon Sep 17 00:00:00 2001 From: paadi Date: Tue, 5 May 2026 08:48:29 +0000 Subject: [PATCH] update README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b502a91..67d0ca4 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,9 @@ resp, _ := http.Post( var result struct { Valid bool `json:"valid"` - Message string `json:"message"` + Message string `json:"message,omitempty"` + Type string `json:"type,omitempty"` + Expires *time.Time `json:"expires,omitempty"` } json.NewDecoder(resp.Body).Decode(&result)