Files
chat-deploy/pkg/botstruct/check.go
kim.dev.6789 b7f8db7d08 复制项目
2026-01-14 22:35:45 +08:00

12 lines
199 B
Go

package botstruct
import (
"strings"
"git.imall.cloud/openim/chat/pkg/common/constant"
)
func IsAgentUserID(userID string) bool {
return strings.HasPrefix(userID, constant.AgentUserIDPrefix)
}