18 lines
454 B
Go
18 lines
454 B
Go
|
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"}
|