From ea053856c99327affe71ba6c1e749f3153b210ba Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 22 May 2025 23:21:08 +0800 Subject: [PATCH] Refactor import statements in main.go for improved organization - Reorganized import statements in main.go to enhance readability. - Removed unused fmt import and added cmd and utils imports back for proper functionality. --- main.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/main.go b/main.go index f4ca7030..420ff794 100644 --- a/main.go +++ b/main.go @@ -1,18 +1,18 @@ package main import ( - "fmt" - _ "github.com/yaoapp/gou/diff" _ "github.com/yaoapp/gou/encoding" _ "github.com/yaoapp/yao/aigc" - "github.com/yaoapp/yao/cmd" _ "github.com/yaoapp/yao/crypto" _ "github.com/yaoapp/yao/excel" _ "github.com/yaoapp/yao/helper" _ "github.com/yaoapp/yao/openai" - "github.com/yaoapp/yao/utils" _ "github.com/yaoapp/yao/wework" + + "github.com/yaoapp/yao/cmd" + "github.com/yaoapp/yao/utils" + // // _ "net/http/pprof" ) @@ -22,5 +22,4 @@ func main() { // }() utils.Init() cmd.Execute() - fmt.Println("Hello, World!") }