From d7f3e0f096959c569f903df737775865b787f3d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Tue, 20 Sep 2022 14:24:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(date):=E7=A9=BA=E6=97=A5=E6=9C=9F=E6=94=B9?= =?UTF-8?q?=E4=B8=BA2000=E5=B9=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- model/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/types.go b/model/types.go index 1112532..4103591 100644 --- a/model/types.go +++ b/model/types.go @@ -29,7 +29,7 @@ func NewEmptyDate() Date { panic(err) } return Date{ - Time: time.Date(0, 1, 1, 0, 0, 0, 0, loc), + Time: time.Date(2000, 1, 1, 0, 0, 0, 0, loc), } }