From c77378d8259e0e83e1c919a0329402b9d2cdfe01 Mon Sep 17 00:00:00 2001 From: liyp Date: Sun, 14 Jul 2024 21:55:02 +0800 Subject: [PATCH] =?UTF-8?q?refactor(ai):=20=E7=A7=BB=E9=99=A4=E8=B0=83?= =?UTF-8?q?=E8=AF=95=E6=89=93=E5=8D=B0=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在GetMsg函数中,移除了用于调试的println语句,以保持代码的清洁和生产就绪状态。 --- workers/ai.go | 1 + 1 file changed, 1 insertion(+) diff --git a/workers/ai.go b/workers/ai.go index bdda97b..0823087 100644 --- a/workers/ai.go +++ b/workers/ai.go @@ -109,6 +109,7 @@ func (a *AI) GetMsg() string { return "文件大小超过1M" } filePath := a.GetImage(file) + // println("filePath:", filePath) if filePath == "" { log.Println("获取图片失败") return "获取图片失败"