17 lines
390 B
Go
17 lines
390 B
Go
|
package textaudit
|
||
|
|
||
|
type TextAuditLabel string
|
||
|
|
||
|
const (
|
||
|
Spam TextAuditLabel = "spam"
|
||
|
Politics TextAuditLabel = "politics"
|
||
|
Abuse TextAuditLabel = "abuse"
|
||
|
Terrorism TextAuditLabel = "terrorism"
|
||
|
Porn TextAuditLabel = "porn"
|
||
|
Flood TextAuditLabel = "flood"
|
||
|
Contraband TextAuditLabel = "contraband"
|
||
|
Ad TextAuditLabel = "ad"
|
||
|
)
|
||
|
|
||
|
const LabelPassed = "normal"
|