Browse Source

no message

xingzai 1 year ago
parent
commit
235855954f
1 changed files with 13 additions and 0 deletions
  1. 13 0
      services/morning_meeting.go

+ 13 - 0
services/morning_meeting.go

@@ -0,0 +1,13 @@
+package services
+
+import (
+	"fmt"
+	"hongze/hongze_cygx/utils"
+	"time"
+)
+
+func init() {
+	DayTime := time.Now().AddDate(0, 0, -46).Format(utils.FormatDate)
+	fmt.Println(DayTime)
+
+}