7 lines
228 B
Go
7 lines
228 B
Go
|
|
package config
|
||
|
|
|
||
|
|
// ReportConfig 举报配置
|
||
|
|
type ReportConfig struct {
|
||
|
|
// AutoHideThreshold 自动隐藏阈值(举报次数达到此数值时自动隐藏内容)
|
||
|
|
AutoHideThreshold int `mapstructure:"auto_hide_threshold"`
|
||
|
|
}
|