Compare commits

...

2 Commits

Author SHA1 Message Date
8cd7d57488 Merge branch 'chat' into dev 2025-06-18 19:53:20 +08:00
0c682db6e8 Update ruler_replyWhenUserJoinSession.go 2025-06-18 19:53:07 +08:00

View File

@ -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
}