From 65ac335f9fc3a3962afbe861367a4238e03c2b5a Mon Sep 17 00:00:00 2001 From: shlinym Date: Sun, 5 Apr 2020 14:09:21 +0800 Subject: [PATCH] update set cookie example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 998783a3..9dde693d 100644 --- a/README.md +++ b/README.md @@ -2057,7 +2057,7 @@ func main() { if err != nil { cookie = "NotSet" - c.SetCookie("gin_cookie", "test", 3600, "/", "localhost", http.SameSiteLaxMode, false, true) + c.SetCookie("gin_cookie", "test", 3600, "/", "localhost", false, true) } fmt.Printf("Cookie value: %s \n", cookie)