This is an automated email from the ASF dual-hosted git repository. warren pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 2c750a1d4047f9f275a54fd3957bace770ea5b96 Author: dunyu.song <[email protected]> AuthorDate: Fri May 20 14:51:08 2022 +0800 move package feat: moves iso8601time and cst_time to helper package --- plugins/{core => helper}/cst_time.go | 2 +- plugins/{core => helper}/iso8601time.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/core/cst_time.go b/plugins/helper/cst_time.go similarity index 98% rename from plugins/core/cst_time.go rename to plugins/helper/cst_time.go index f988d92f..7cbaaa51 100644 --- a/plugins/core/cst_time.go +++ b/plugins/helper/cst_time.go @@ -1,4 +1,4 @@ -package core +package helper import ( "database/sql/driver" diff --git a/plugins/core/iso8601time.go b/plugins/helper/iso8601time.go similarity index 99% rename from plugins/core/iso8601time.go rename to plugins/helper/iso8601time.go index 393afce6..bcb8669c 100644 --- a/plugins/core/iso8601time.go +++ b/plugins/helper/iso8601time.go @@ -1,4 +1,4 @@ -package core +package helper import ( "fmt"
