2019-04-24 21:52:08 +00:00
|
|
|
package schema
|
|
|
|
|
|
|
|
// RegulationConfiguration represents the configuration related to regulation.
|
|
|
|
type RegulationConfiguration struct {
|
2020-01-21 20:56:44 +00:00
|
|
|
MaxRetries int `mapstructure:"max_retries"`
|
|
|
|
FindTime int64 `mapstructure:"find_time"`
|
|
|
|
BanTime int64 `mapstructure:"ban_time"`
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|