11 lines
368 B
Go
11 lines
368 B
Go
|
|
package config
|
||
|
|
|
||
|
|
type SensitiveConfig struct {
|
||
|
|
Enabled bool `mapstructure:"enabled"`
|
||
|
|
ReplaceStr string `mapstructure:"replace_str"`
|
||
|
|
MinMatchLen int `mapstructure:"min_match_len"`
|
||
|
|
LoadFromDB bool `mapstructure:"load_from_db"`
|
||
|
|
LoadFromRedis bool `mapstructure:"load_from_redis"`
|
||
|
|
RedisKeyPrefix string `mapstructure:"redis_key_prefix"`
|
||
|
|
}
|