12 lines
199 B
Go
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)
|
|
}
|