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 }