13 lines
555 B
Go
13 lines
555 B
Go
|
package ccls
|
||
|
|
||
|
// Content Classification Label
|
||
|
type ContentClassificationLabel string
|
||
|
|
||
|
const (
|
||
|
ContentClassificationLabelDrugsIntoxication ContentClassificationLabel = "DrugsIntoxication"
|
||
|
ContentClassificationLabelSexualThemes ContentClassificationLabel = "SexualThemes"
|
||
|
ContentClassificationLabelViolentGraphic ContentClassificationLabel = "ViolentGraphic"
|
||
|
ContentClassificationLabelGambling ContentClassificationLabel = "Gambling"
|
||
|
ContentClassificationLabelProfanityVulgarity ContentClassificationLabel = "ProfanityVulgarity"
|
||
|
)
|