From 0c682db6e81b2838726c25594b9df8dff058dc11 Mon Sep 17 00:00:00 2001 From: jjxu <428192774@qq.com> Date: Wed, 18 Jun 2025 19:53:07 +0800 Subject: [PATCH] Update ruler_replyWhenUserJoinSession.go --- .../asChat/robot/ruler_replyWhenUserJoinSession.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkg/service/asChat/robot/ruler_replyWhenUserJoinSession.go b/pkg/service/asChat/robot/ruler_replyWhenUserJoinSession.go index 1f4532f..55d5177 100644 --- a/pkg/service/asChat/robot/ruler_replyWhenUserJoinSession.go +++ b/pkg/service/asChat/robot/ruler_replyWhenUserJoinSession.go @@ -75,12 +75,10 @@ func (r ReplyWhenUserJoinSession) Run(cache *chatCache.ChatCache) (err error) { return } -func (r ReplyWhenUserJoinSession) RunTime() time.Time { - //TODO implement me - panic("implement me") +func (r *ReplyWhenUserJoinSession) RunTime() time.Time { + return time.Time{} } -func (r ReplyWhenUserJoinSession) SetResponse(response string) { - //TODO implement me - panic("implement me") +func (r *ReplyWhenUserJoinSession) SetResponse(response string) { + r.Resp = response }