mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
7 lines
136 B
Go
7 lines
136 B
Go
|
package config
|
||
|
|
||
|
type KindLimitConfig struct {
|
||
|
Kind int `yaml:"kind"`
|
||
|
Limit float64 `yaml:"limit"`
|
||
|
Burst int `yaml:"burst"`
|
||
|
}
|