12 lines
248 B
12 lines
248 B
1 month ago
|
package limit
|
||
|
|
||
|
type LimitConfRules struct {
|
||
|
Rules map[string]*LimitOpt `mapstructure:"rules"`
|
||
|
}
|
||
|
|
||
|
type LimitOpt struct {
|
||
|
Interval int64 `mapstructure:"interval"`
|
||
|
Capacity int64 `mapstructure:"capacity"`
|
||
|
Quantum int64 `mapstructure:"quantum"`
|
||
|
}
|