From 2fa108dd67b33379b22dbbfebdbe5cc4bfdbe572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Sun, 13 Aug 2023 22:38:39 +0800 Subject: [PATCH] feat: remove unnecessary bootstrap --- bootstrap/app.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bootstrap/app.go b/bootstrap/app.go index b55d9062..a99f6721 100644 --- a/bootstrap/app.go +++ b/bootstrap/app.go @@ -2,7 +2,6 @@ package bootstrap import ( "github.com/goravel/framework/foundation" - "github.com/goravel/framework/support/carbon" "panel/config" ) @@ -15,7 +14,4 @@ func Boot() { // Bootstrap the config. config.Boot() - - // 设置 Carbon 时区 - carbon.SetTimezone(carbon.PRC) }