service/library/contentaudit/imageaudit/consts.go

18 lines
454 B
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package imageaudit
type ImageAuditScene string
const (
Porn ImageAuditScene = "porn"
Terrorism ImageAuditScene = "terrorism"
Ad ImageAuditScene = "ad"
Live ImageAuditScene = "live"
Logo ImageAuditScene = "logo"
)
var PornPassLabels = []string{"normal", "sexy"}
var TerrorismPassLabels = []string{"normal"}
var AdPassLabels = []string{"normal"}
var LivePassLabels = []string{"normal"}
var LogoPassLabels = []string{"normal"}