From 62e594c957193b4d6e36a482eebe4dc6fc4111f7 Mon Sep 17 00:00:00 2001 From: DengBiao <2319963317@qq.com> Date: Thu, 20 Apr 2023 18:21:11 +0800 Subject: [PATCH] update --- internal/logic/app/group_app.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/logic/app/group_app.go b/internal/logic/app/group_app.go index c5e1a03..a197459 100644 --- a/internal/logic/app/group_app.go +++ b/internal/logic/app/group_app.go @@ -54,6 +54,9 @@ func (*groupApp) GetGroup(ctx context.Context, groupId int64) (*pb.Group, error) } } } + utils.FilePutContents("GetGroup", utils.SerializeStr(map[string]interface{}{ + "resp": group.ToProto(), + })) return group.ToProto(), nil }